| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- import { StyleSheet, Platform } from 'react-native';
- import { Colors } from '../../../../theme';
- export const styles = StyleSheet.create({
- markerContainer: {
- width: 30,
- height: 30,
- justifyContent: 'center',
- alignItems: 'center',
- backgroundColor: Colors.WHITE,
- borderRadius: 15,
- borderWidth: 2,
- borderColor: Colors.TEXT_GRAY
- },
- icon: {
- width: 20,
- height: 20
- },
- customView: {
- width: 200,
- backgroundColor: Colors.WHITE,
- borderRadius: 8,
- shadowColor: '#212529',
- shadowOffset: { width: 0, height: 4 },
- shadowOpacity: 0.12,
- shadowRadius: 8,
- elevation: 5
- },
- calloutContainer: {
- alignItems: 'center',
- paddingVertical: 15,
- paddingHorizontal: 10
- },
- calloutImageContainer: {
- width: 38,
- height: 38,
- justifyContent: 'center',
- alignItems: 'center',
- backgroundColor: Colors.WHITE,
- borderRadius: 19,
- borderWidth: 2,
- borderColor: Colors.TEXT_GRAY,
- marginTop: Platform.OS === 'ios' ? -34 : -4
- },
- calloutImage: {
- width: 32,
- height: 32
- },
- userImage: {
- width: 38,
- height: 38,
- borderRadius: 19,
- borderWidth: 2,
- borderColor: Colors.WHITE
- },
- flag: {
- width: 20,
- height: 20,
- borderRadius: 10,
- borderWidth: 1,
- borderColor: Colors.FILL_LIGHT
- },
- calloutTextContainer: {
- flex: 1,
- gap: 4,
- alignItems: 'center',
- marginVertical: 10
- },
- seriesName: {
- fontSize: 13,
- fontWeight: 'bold',
- color: Colors.DARK_BLUE,
- textAlign: 'center'
- },
- markerName: {
- fontSize: 12,
- color: Colors.DARK_BLUE,
- textAlign: 'center'
- },
- calloutButton: {
- paddingHorizontal: 12,
- paddingVertical: 6,
- backgroundColor: Colors.ORANGE,
- borderRadius: 6,
- height: 30,
- alignItems: 'center',
- justifyContent: 'center'
- },
- calloutButtonText: {
- color: 'white',
- fontSize: 12,
- fontWeight: 'bold'
- },
- completedContainer: { flexDirection: 'row', alignItems: 'center', gap: 6 },
- customCallout: {
- width: 200,
- backgroundColor: Colors.WHITE,
- shadowColor: '#212529',
- shadowOffset: { width: 0, height: 4 },
- shadowOpacity: 0.12,
- shadowRadius: 8,
- elevation: 5
- },
- userCountContainer: {
- width: 28,
- height: 28,
- borderRadius: 14,
- backgroundColor: Colors.DARK_LIGHT,
- alignItems: 'center',
- justifyContent: 'center',
- marginLeft: -6
- },
- userCount: {
- fontSize: 12,
- color: Colors.DARK_BLUE,
- lineHeight: 24
- },
- userImageContainer: {
- flexDirection: 'row',
- alignItems: 'center',
- marginBottom: 12
- },
- userImageSmall: {
- width: 28,
- height: 28,
- borderRadius: 14,
- marginLeft: -6,
- borderWidth: 1,
- borderColor: Colors.DARK_LIGHT,
- resizeMode: 'cover'
- }
- });
|