Spinner
This component displays an animated “spinner” control that tells the user that an operation is pending. Animation continues as long as the component is displayed.
- Flexbox Styles
- View Styles
- Transform Styles
Name | Type | Description |
color | color |
|
deferTime | number |
|
size | 'large' | 'medium' | 'small' | 'tiny' |
|
testId | string |
|
<View style={styles.root}>
{loading &&
<ActivityIndicator color="#ffffff" size="medium" />
}
</View>
Last modified 3yr ago