Prop style mapping lvgl object LV_PART_MAIN style
support JS Object or JS Array
import { View, Button, Text } from 'lvlgjs-ui'
function Component () {
return (
<View
style={style.view}
>
<Button style={[style.button1, style.button2]}>
<Text>2222</Text>
</Button>
</View>
)
}
const style = {
view: {},
button1: {},
button2: {}
}