Finalized profile flow, setup status bar color, and add some improvement

This commit is contained in:
Mochammad Adhi Buchori
2025-04-19 14:04:34 +07:00
parent ef2bc641ac
commit 608e03558d
25 changed files with 901 additions and 92 deletions

View File

@ -0,0 +1,20 @@
import {StyleSheet} from 'react-native';
import Colors from '../../../assets/styles/Colors';
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'white',
},
bottomNavLabel: {
color: Colors.neutral100.color,
textAlign: 'center',
alignSelf: 'center',
fontSize: 12,
position: 'absolute',
},
});
export default styles;