Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 386 Bytes

File metadata and controls

24 lines (17 loc) · 386 Bytes

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

  import { G ,GS, GH } from 'react-native-painter'
    <Painter style={styles.Painter} 
    >
        <G >
             <Line />
            <Circle />
            <Path />
        </G>   
    </Painter>