65 lines
1.4 KiB
TypeScript
65 lines
1.4 KiB
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { typography } from '@theme';
|
|
|
|
export const getStyles = (colors: any) => StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: colors.background,
|
|
},
|
|
addressBar: {
|
|
paddingHorizontal: 16,
|
|
paddingTop: 12,
|
|
paddingBottom: 4,
|
|
},
|
|
addressLabel: {
|
|
fontSize: typography.fontSize.xs,
|
|
color: colors.textSecondary,
|
|
marginBottom: 2,
|
|
},
|
|
addressRow: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
},
|
|
addressText: {
|
|
fontSize: typography.fontSize.md,
|
|
fontWeight: typography.fontWeight.semibold,
|
|
color: colors.text,
|
|
flex: 1,
|
|
},
|
|
dropdownArrow: {
|
|
fontSize: 12,
|
|
color: colors.textSecondary,
|
|
marginLeft: 4,
|
|
},
|
|
banner: {
|
|
backgroundColor: '#05824C',
|
|
marginHorizontal: 16,
|
|
borderRadius: 12,
|
|
padding: 20,
|
|
marginVertical: 8,
|
|
},
|
|
bannerText: {
|
|
fontSize: typography.fontSize.xxl,
|
|
fontWeight: typography.fontWeight.bold,
|
|
color: '#FFFFFF',
|
|
},
|
|
bannerSubtext: {
|
|
fontSize: typography.fontSize.sm,
|
|
color: '#FFFFFF',
|
|
opacity: 0.9,
|
|
marginTop: 4,
|
|
},
|
|
chipRow: {
|
|
paddingHorizontal: 16,
|
|
paddingVertical: 12,
|
|
},
|
|
sectionTitle: {
|
|
fontSize: typography.fontSize.lg,
|
|
fontWeight: typography.fontWeight.bold,
|
|
color: colors.text,
|
|
paddingHorizontal: 16,
|
|
marginBottom: 8,
|
|
marginTop: 4,
|
|
},
|
|
});
|