29 lines
608 B
TypeScript

import { StyleSheet } from 'react-native';
export const getStyles = (colors: any) =>
StyleSheet.create({
container: {
flex: 1,
},
map: {
...StyleSheet.absoluteFill,
},
driverMarker: {
backgroundColor: '#FFF',
padding: 6,
borderRadius: 20,
borderWidth: 2,
borderColor: '#FF7F00',
elevation: 4,
shadowColor: '#000',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.25,
shadowRadius: 3.84,
justifyContent: 'center',
alignItems: 'center',
},
driverEmoji: {
fontSize: 20,
},
});