sgcart/app/components/wrapper/wrapper.styles.ts
2026-07-03 13:10:46 +05:30

30 lines
474 B
TypeScript

import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: {
flex: 1,
},
loadingContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
webview: {
flex: 1,
},
testButton: {
position: 'absolute',
bottom: 40,
right: 20,
backgroundColor: 'blue',
paddingHorizontal: 16,
paddingVertical: 12,
borderRadius: 8,
},
testButtonText: {
color: '#fff',
fontWeight: '600',
},
});