react-native-painter
Version:
Custom Painter Android WEB IOS
23 lines (16 loc) • 445 B
Markdown
# MaskG
The MaskG element is a container that is used to group other elements but only within a Mask.
Attributes are inherited by its children.
```jsx
import { MaskG } from 'react-native-painter'
<Painter style={styles.Painter}
>
<Mask>
<MaskG >
<Line />
<Circle />
<Path />
</MaskG>
</Mask>
</Painter>
```