react-native-box-lite

Installation
$ npm install react-native-box-lite
Extension for react-native-box-lite
To use suggestion for className, you need to install extension react-native-components-intellisense in your vscode.
Usage
import {Box, Button, Text} from 'react-native-box-lite';
import {View} from 'react-native';
const test =()=>{
const containerStyle = useClassName({
className: "flex-1 bg-white p-4"
})
const containerHeaderStyle = useClassName({
className: "bg-black p-4 h-10 w-screen"
})
return (
<View style={containerStyles}>
<Box style={containerHeaderStyle}>
<Text className="text-white font-bold text-xl">
Title Demo rn component
</Text>
</Box>
<Box className="bg-amber-200 h-12 w-12">
<Text className="text-white font-bold text-md">
Demo rn component
</Text>
</Box>
<Button title="Demo Button Default" />
<Button varian="outline" title="Demo Button Outline" />
<Button varian="primary" title="Demo Button Primary" />
<View>
)
}
Usage custom styles
- use passed number in
[]
as w-[200]
=> width: 200
- scale you can use function horizontalScale fontSize,...
[${horizontalScale(30)}]
import {Box, Text} from 'react-native-box-lite';
const customStyles = () => {
return (
<Box>
<Box className="w-[200] h-[350] bg-white center" />
<Text className="text-[22] text-green-500 font-bold">
Demo rn component
</Text>
</Box>
);
};
HOOK: useClassName
className | class of component as:w-1 h-1 | null |
scaleScreen | Active use scale by width of screen | true |
Box
className | class styles of component | null |
scaleScreen | Active use scale by width of screen | true |
rest | extents from ViewProps | |
import {Box} from 'react-native-box-lite';
<Box className="row gap-2">
<Box className="w-10 h-10 bg-red-400" />
<Box className="w-10 h-10 bg-green-400" />
<Box className="w-10 h-10 bg-yellow-400" />
</Box>;

Button
varian | type of primary, outline | null |
className | class styles of component | null |
scaleScreen | Active use scale by width of screen | true |
isDebounce | Active debounce when press | false |
delayDebounce | time debounce when press | 500 |
rest | extents from TouchableOpacityProps | |
import {Button} from 'react-native-box-lite';
<Button title="Demo Button Default" />
<Button varian="outline" title="Demo Button Outline" />
<Button varian="primary" title="Demo Button Primary" />

Text
className | class styles of component | null |
scaleScreen | Active use scale by width of screen | true |
rest | extents from TextProps | |
import {Text} from 'react-native-box-lite';
<Text className="font-bold text-xl text-black">Text xl</Text>
<Text className="font-normal text-xl text-black">Font normal</Text>

scale screen
horizontalScale | scale by ratio width device default guidelineBaseWidth = 375 | number |
verticalScale | scale by ratio height device default guidelineBaseHeight = 812 | number |
moderateScale | scale by ratio width and height | number |
fontSize | scale by ratio width and height | number |