2026-07-02 14:34:19 +05:30

29 lines
621 B
TypeScript

import { StyleSheet } from 'react-native';
export const getStyles = (colors: any) =>
StyleSheet.create({
container: {
flex: 1,
width: '100%',
height: '100%',
backgroundColor: colors.inputBg,
justifyContent: 'center',
alignItems: 'center',
},
map: {
...StyleSheet.absoluteFillObject,
},
mockOverlay: {
position: 'absolute',
top: 40,
padding: 10,
borderRadius: 20,
backgroundColor: 'rgba(255, 255, 255, 0.9)',
alignSelf: 'center',
},
mockText: {
color: colors.primary,
fontWeight: 'bold',
},
});