React Native CountDown Component
npm install @yakalexey/react-native-countdown-componentReact Native CountDown
Run npm install @yakalexey/react-native-countdown-component
``javascript
import CountDown from 'react-native-countdown-component'
render() {
return (
onFinish={() => alert('finished')}
onPress={() => alert('hello')}
size={20}
/>
)
}
`
| Name | Description | Type | Default Value |
| :------------- | :----------------------------------------------------------- | :---------------------- | :-------------------------------------------------: |
| id | Counter ID, to determine whether to reset the counter or not | string | null |
| style | Override the component style | StyleProp | {} |StyleProp
| digitStyle | Digit style | | {backgroundColor: '#FAB913'} |StyleProp
| digitTxtStyle | Digit Text style | | {color: '#000'} |StyleProp
| timeLabelStyle | Time Label style | | {color: '#000'} |StyleProp
| separatorStyle | Separator style | | {color: '#000'} |
| size | Size of the countdown component | number | 15 |
| until | Number of seconds to countdown | number | 0 |
| onFinish | What function should be invoked when the time is 0 | () => void | null |
| onChange | What function should be invoked when the timer is changing | (until: number) => void | null |
| onPress | What function should be invoked when clicking on the timer | () => void | null |
| timeToShow | What Digits to show | DigitType[] | ['D', 'H', 'M', 'S'] |
| timeLabels | Text to show in time label | object | {d: 'Days', h: 'Hours', m: 'Minutes', s: 'Seconds'} |
| showSeparator | Should show separator | boolean | false |
| running | A boolean to pause and resume the component | boolean | true |
`javascript
import CountDown from '@yakalexey/react-native-countdown-component'
render() {
return (
size={30}
onFinish={() => alert('Finished')}
digitStyle={{backgroundColor: '#FFF'}}
digitTxtStyle={{color: '#1CC625'}}
timeToShow={['M', 'S']}
timeLabels={{m: 'MM', s: 'SS'}}
/>
)
}
`
`javascript
import CountDown from '@yakalexey/react-native-countdown-component'
render() {
return (
until={1000}
onFinish={() => alert('Finished')}
digitStyle={{backgroundColor: '#FFF', borderWidth: 2, borderColor: '#1CC625'}}
digitTxtStyle={{color: '#1CC625'}}
timeLabelStyle={{color: 'red', fontWeight: 'bold'}}
separatorStyle={{color: '#1CC625'}}
timeToShow={['H', 'M', 'S']}
timeLabels={{m: null, s: null}}
showSeparator
/>
)
}
``