Florian 26e5b0ae6f Completely reworked the app by starting fresh
- Now you can just swipe to access categories
- Redone side menu
- Inital API input screen is more legible
- A goose as an icon
- Proper display and internal name
- Correct handling of incoming data
2025-10-16 16:41:01 +02:00

35 lines
620 B
TypeScript

import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
centered: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
padding: 16,
backgroundColor: '#fff', // dark background for screens
},
input: {
borderWidth: 1,
borderColor: '#555',
width: '80%',
padding: 8,
marginVertical: 16,
borderRadius: 8,
color: '#fff',
},
label: {
color: '#fff',
fontSize: 16,
},
logoutButton: {
backgroundColor: '#444',
paddingVertical: 12,
borderRadius: 8,
alignItems: 'center',
},
logoutText: {
color: '#fff',
fontSize: 16,
fontWeight: '600',
},
});