Skip to content

eduardoborges/react-native-flex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

19 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ“ react-native-flex

A simple react-native flex grid component to build layouts with elegance

npm npm package minimized gzipped size (select exports) npm

Features

  • โœจ 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.

Install

npm install react-native-flex

Quickstart

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>
  )
}

Let's grid it! ๐Ÿ’ช