Add Eazy Passport screen and add passport application flow until step 5 'Verifikasi'

This commit is contained in:
Mochammad Adhi Buchori
2025-04-23 16:44:30 +07:00
parent 62412cedc9
commit 5f513257d6
12 changed files with 2006 additions and 143 deletions

View File

@ -1,12 +1,36 @@
import {StyleSheet} from 'react-native';
import FontFamily from '../../../assets/styles/FontFamily';
import Colors from '../../../assets/styles/Colors';
const styles = StyleSheet.create({
container: {
flex: 1,
alignContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
justifyContent: 'center',
},
textContainer: {
gap: 8,
margin: 16
},
textDesc: {
...FontFamily.notoSansRegular,
fontSize: 12,
includeFontPadding: false,
textAlign: 'justify',
},
appBarTitle: {
color: Colors.neutral100.color,
...FontFamily.notoSansRegular,
fontSize: 22,
marginStart: 16,
},
appBarIcon: {
marginLeft: 16,
},
appBarContainer: {
height: 64,
flexDirection: 'row',
alignItems: 'center',
backgroundColor: Colors.secondary30.color,
},
});