diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2023-04-13 22:31:47 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2023-04-13 22:49:24 +0200 |
| commit | 50235bc304db2e309d2de63452f301139fc3f9cc (patch) | |
| tree | 1453b045888657bece5f5de74e580834858e9e29 /App.js | |
| parent | 1cb36cd073252f4a185cd9775382da4c6861a8cb (diff) | |
| download | remarques-50235bc304db2e309d2de63452f301139fc3f9cc.tar.gz remarques-50235bc304db2e309d2de63452f301139fc3f9cc.tar.zst remarques-50235bc304db2e309d2de63452f301139fc3f9cc.zip | |
Fix bug in Options.js
Add License
Add node version
Diffstat (limited to 'App.js')
| -rw-r--r-- | App.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -21,7 +21,7 @@ function App() { title: 'Notes list', headerRight: () => <TouchableOpacity onPress={() => window.navigation.navigate("options")}><Image source={kIcon} style={{ width: 30, height: 30, marginRight: 10 }} /></TouchableOpacity>, headerStyle: { - backgroundColor: '#ff0000', + backgroundColor: '#ff5a5a', }, headerTintColor: '#ffffff', headerTitleStyle: { @@ -31,7 +31,7 @@ function App() { <Drawer.Screen name="addNote" component={NoteView} options={{ title: 'Add note', headerStyle: { - backgroundColor: '#0000FF', + backgroundColor: '#b9e1ff', }, headerTintColor: '#ffffff', headerTitleStyle: { @@ -42,7 +42,7 @@ function App() { <Drawer.Screen name="editNote" component={NoteView} options={{ title: 'Edit note', headerStyle: { - backgroundColor: 'darkgreen', + backgroundColor: '#49d96c', }, headerTintColor: '#ffffff', headerTitleStyle: { @@ -53,7 +53,7 @@ function App() { <Drawer.Screen name="addCategory" component={CategoryView} options={{ title: 'Add category', headerStyle: { - backgroundColor: 'darkorange', + backgroundColor: '#f5ac58', }, headerTintColor: '#ffffff', headerTitleStyle: { |
