123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { StyleSheet, Platform } from 'react-native';
- import { Colors } from '../../../theme';
- export const styles = StyleSheet.create({
- container: {
- ...StyleSheet.absoluteFillObject,
- alignItems: 'center',
- justifyContent: 'flex-end',
- },
- map: {
- ...StyleSheet.absoluteFillObject,
- },
- cornerButton: {
- position: 'absolute',
- backgroundColor: Colors.WHITE,
- padding: 12,
- width: 48,
- height: 48,
- borderRadius: 24,
- alignItems: 'center',
- justifyContent: 'center',
- shadowColor: 'rgba(33, 37, 41, 0.12)',
- shadowOffset: { width: 0, height: 4 },
- shadowRadius: 8,
- elevation: 5,
- },
- topLeftButton: {
- top: 44,
- left: 16,
- },
- closeLeftButton: {
- backgroundColor: 'rgba(33, 37, 41, 0.78)',
- paddingHorizontal: 12,
- paddingVertical: 8,
- width: 81,
- height: 36,
- borderRadius: 18,
- flexDirection: 'row',
- gap: 6,
- },
- topRightButton: {
- top: 44,
- right: 16,
- },
- bottomButton: {
- bottom: Platform.OS == 'android' ? 80 : 100,
- width: 42,
- height: 42,
- borderRadius: 21,
- },
- bottomLeftButton: {
- left: 16,
- },
- bottomRightButton: {
- right: 16,
- },
- textClose: {
- fontSize: 12,
- color: 'white',
- fontWeight: '500',
- lineHeight: 14,
- },
- });
|