verfify screen start

This commit is contained in:
2025-06-25 17:33:46 +05:30
parent 2d901a407a
commit 9873a3844d
5 changed files with 133 additions and 34 deletions
+11 -21
View File
@@ -1,27 +1,21 @@
import {StyleSheet} from 'react-native';
import { StyleSheet } from 'react-native';
import { GlobalTheme , Screen } from '../../../theme';
import { GlobalTheme, Screen } from '../../../theme';
export const styles = StyleSheet.create({
container: {
flex: 1,
// backgroundColor: GlobalTheme.colors.white,
paddingHorizontal: 10,
// justifyContent:'center'
},
logoContainer: {
alignItems: 'center',
},
appLogo: {
height :200 ,
width :200,
height: 200,
width: 200,
resizeMode: 'contain',
},
appMaskLogo: {
resizeMode: 'stretch',
width: Screen.screenHeight * 0.9,
height: Screen.screenHeight * 0.33,
},
titleContainer: {
alignSelf: 'center',
// marginTop: 15,
@@ -31,16 +25,12 @@ export const styles = StyleSheet.create({
fontWeight: 'bold',
color: GlobalTheme.colors.black,
},
subtitleText: {
fontSize: 15,
color: '#1F2128',
marginBottom: 14,
fontWeight: '600',
alignSelf: 'center',
width: '80%',
textAlign: 'center',
},
subtitleHighlight: {
color: '#2381E9',
btnbg: {
backgroundColor: GlobalTheme.colors.secondary, borderRadius: GlobalTheme.borderRadius.md
},
btntext: {
color: GlobalTheme.colors.white,
fontSize: GlobalTheme.typography.fontSize.medium
}
});