- 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
35 lines
620 B
TypeScript
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',
|
|
},
|
|
}); |