ibrdos-react-native-components
yarn add ibrdos-react-native-components
npx expo install react-native-toast-message react-native-root-siblings react-native-reanimated react-native-reanimated-carousel @react-native-async-storage/async-storage react-native-fast-image react-native-gesture-handler react-native-safe-area-context
import {IRNCRootView, Column, Row} from 'ibrdos-react-native-components';
function App({...props}) {
return (
<IRNCRootView>
<Column fullWidth="true" alignX="center">
<Row>
{/* Do Something */}
</Row>
</Column>
</IRNCRootView>
)
}
Expo Dev Client
Some components in this library require the Expo Dev Client to be installed on your device. You can install it from the Expo Docs.
yarn add expo-dev-client
expo start --dev-client
Components
Column
<Column
fullWidth={true}
alignX="center"
alignY="center"
style={{backgroundColor: 'red'}}
>
{/* Do Something */}
</Column>
Row
<Row
fullWidth={true}
alignX="center"
alignY="center"
style={{backgroundColor: 'red'}}
>
{/* Do Something */}
</Row>
Note
Some components are not yet documented. Please refer to the source code for more information.