33 lines
671 B
TypeScript
33 lines
671 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: {
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
},
|
|
mockOverlay: {
|
|
position: 'absolute',
|
|
top: 40,
|
|
padding: 10,
|
|
borderRadius: 20,
|
|
backgroundColor: 'rgba(255, 255, 255, 0.9)',
|
|
alignSelf: 'center',
|
|
},
|
|
mockText: {
|
|
color: colors.primary,
|
|
fontWeight: 'bold',
|
|
},
|
|
});
|