1// create Style.js
2import { StyleSheet } from 'react-native';
3
4export default StyleSheet.create({
5 container: {
6 flex: 1
7 },
8 welcome: {
9 fontSize: 20
10 }
11});
12/* import it where you want to use it
13import styles from './Style'
14*/