react-native-notify-kit / AndroidProgress
Interface: AndroidProgress
Defined in: packages/react-native/src/types/NotificationAndroid.ts:845
Interface for defining the progress of an Android Notification.
View the Progress Indicators documentation to learn more.
current?
optionalcurrent?:number
Defined in: packages/react-native/src/types/NotificationAndroid.ts:858
The current progress value.
E.g. setting to 4 with a max value of 10 would set a fixed progress bar on the notification at 40% complete.
indeterminate?
optionalindeterminate?:boolean
Defined in: packages/react-native/src/types/NotificationAndroid.ts:866
If true, overrides the max and current values and displays an unknown progress style. Useful when you have no
knowledge of a tasks completion state.
Defaults to false.
max?
optionalmax?:number
Defined in: packages/react-native/src/types/NotificationAndroid.ts:851
The maximum progress number. E.g 10.
Must be greater than the current value.
