35 lines
790 B
TypeScript
35 lines
790 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { typography } from '@theme';
|
|
|
|
export const getStyles = (colors: any) =>
|
|
StyleSheet.create({
|
|
container: {
|
|
width: '100%',
|
|
paddingVertical: 10,
|
|
backgroundColor: colors.background,
|
|
},
|
|
row: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-around',
|
|
marginVertical: 8,
|
|
},
|
|
keyButton: {
|
|
width: 70,
|
|
height: 70,
|
|
borderRadius: 35,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: colors.inputBg,
|
|
},
|
|
keyText: {
|
|
fontSize: typography.fontSize.xl,
|
|
fontWeight: typography.fontWeight.semibold,
|
|
color: colors.text,
|
|
},
|
|
emptyKey: {
|
|
width: 70,
|
|
height: 70,
|
|
backgroundColor: 'transparent',
|
|
},
|
|
});
|