Answers for "absolute path in react native"

0

how to position View absolute react native

<View style={{position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, justifyContent: 'center', alignItems: 'center'}}>
  <Text>Centered text</Text>
</View>
Posted by: Guest on May-21-2020
0

absolute path in react native

// Add following to babel.config.js file
module.exports = {
  presets: ['module:metro-react-native-babel-preset'],
  plugins: [
    [
      'module-resolver',
      {
        root: ['./src'],
        alias: {
          '~': './src',
        },
      },
    ],
  ],
};
Posted by: Guest on August-03-2021

Code answers related to "absolute path in react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language