1<View style={{position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, justifyContent: 'center', alignItems: 'center'}}>
2 <Text>Centered text</Text>
3</View>
1// Add following to babel.config.js file
2module.exports = {
3 presets: ['module:metro-react-native-babel-preset'],
4 plugins: [
5 [
6 'module-resolver',
7 {
8 root: ['./src'],
9 alias: {
10 '~': './src',
11 },
12 },
13 ],
14 ],
15};
16