react-native-painter
Version:
Custom Painter Android WEB IOS
25 lines (17 loc) • 410 B
Markdown
# G
The G element is a container used to group other elements.
Attributes are inherited by its children.
Android:
GS: Software , shadow (api < 28)
GH: Hardware
```JS
import { G ,GS, GH } from 'react-native-painter'
<Painter style={styles.Painter}
>
<G >
<Line />
<Circle />
<Path />
</G>
</Painter>
```