- โจ Intuitive Grid System: Create responsive and flexible grids for your mobile app layouts effortlessly.
- ๐ Customizable Grid Configuration: Tailor the grid to your project's unique needs with a range of options.
- ๐ High Performance: Smooth animations and fast rendering, ensuring a delightful user experience.
- ๐ก Grid-Based Responsiveness: Effortlessly adapt to various screen sizes and orientations.
npm install react-native-flex
import React from 'react'
import { Flex } from 'react-native-flex';
const App = () => {
return (
<Flex vCentered centered vertical debug>
<Flex vEnd centered full>
// ...
</Flex>
<Flex centered vCentered>
// ...
</Flex>
</Flex>
)
}