@mbrain/epic-react-native-lib
v0.0.12
Published
A set of helpful, battle-tested utilities that simplify common React Native workflows and speed up app development
Readme
Epic React Native Library
A set of helpful, battle-tested utilities that simplify common React Native workflows and speed up app development.
Installation
Install inside your React Native project:
npm install @mbrain/epic-react-native-libCompatibility
- Works in both native and web React Native projects
- Required peers:
react >=18andreact-native >=0.72 - Optional (web-only) peers:
react-dom >=18andreact-native-web >=0.19
Usage
import { Box1 } from '@mbrain/epic-react-native-lib';
export function MyScreen() {
return (
<Box1 style={{ margin: 16 }}>
<Text>Content rendered inside Box1</Text>
</Box1>
);
}