react-native-loading-button-with-animation
Install
npm install react-native-loading-button-with-animation --save
Example
; { superprops; thisstate = isLoading: false ; } { this; ; } { return <View style=stylescontainer> <Text style=styleswelcome>Welcome to React Native!</Text> <LoadingButton disabled=!!thisstateisLoading onPress=thisonPressHandler isLoading=thisstateisLoading /> </View> ; }
Props
Name | Detail & Type | Default |
---|---|---|
onPress | Button On press callback (function) | alert('press') |
isLoading | Start or stop animation boolean | false |
activityIndicatorColor | Activity Indicator Color (string) | '#FFF' |
activityIndicatorSize | Activity Indicator Size (string) | 'small' |
viewStyle | Main View style (object) | 'small' |
animationDelay | How manny time will tack to animate (number) | 200 |
whenAnimationViewWidth | Main view size when animated | 40 |
enableWidthAnimation | Change width when animation | true |
childView | Inner child Component | Text Component (OK) |
disabled | Disables TouchableOpacity while loading | true |