css.js 265 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 import { StyleSheet} from 'react-native'; const mainCss = StyleSheet.create({ body:{ flex: 1, }, main :{ flex: 1, }, tabIcon:{ flex: 1, width: 20, height: 20, marginBottom:0, paddingBottom:0, }, }); export default mainCss;