@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
20 lines (16 loc) • 455 B
text/typescript
import { StyleSheet } from 'react-native'
import type { ThemeVarType } from '../theme'
export const createStyles = (themeVar: ThemeVarType) => {
return StyleSheet.create({
item: {
flex: 1,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
},
text: {
fontSize: themeVar.dropdown_menu_title_font_size,
paddingHorizontal: themeVar.dropdown_menu_title_padding_horizontal,
},
})
}