Skip to content

Commit

Permalink
add padding for description and update version
Browse files Browse the repository at this point in the history
  • Loading branch information
goseind committed Nov 9, 2023
1 parent 5e0db10 commit 6f3348f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion kryptolearn/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "Krypto Learn",
"slug": "kryptolearn",
"version": "1.0.0",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
Expand All @@ -18,6 +18,7 @@
"supportsTablet": true
},
"android": {
"versionCode": 2,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#586576"
Expand Down
5 changes: 4 additions & 1 deletion kryptolearn/screens/crt.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const ChineseRemainderTheorem = () => {
return (
<SafeAreaView style={styles.container}>
<SafeAreaView style={styles.containerr}>
<Text>
<Text style={styles.description}>
Chinesischer Restsatz als Lösungsverfahren bei gleichzeitiger
Kongruenz. Gib mehrere durch Komma getrennte Module und die
zugehörigen Reste ein, um die unbekannte Summe zu berechnen.
Expand Down Expand Up @@ -71,6 +71,9 @@ const styles = StyleSheet.create({
flex: 1,
//flexDirection: 'row',
},
description: {
padding: 10,
},
input: {
flex: 1,
height: 40,
Expand Down

0 comments on commit 6f3348f

Please sign in to comment.