- What's the difference between a progress bar and an activity indicator?
- A progress bar is determinate whereas a progress indicator is used to indicate an indeterminate amount of time.
- There is no difference. A progress bar and a progress indicator are actually the same thing.
- A progress bar renders a horizontal bar—everything else is considered a progress indicator.
- Does the React Native ActivityIndicator component work the same on iOS and Android?
- No, this component is not platform agnostic.
- Yes, this component is platform agnostic.
- How can you use the ProgressViewIOS and the ProgressBarAndroid components in a platform agnostic way?
- You can define your own ProgressBar component that imports other components with platform-specific file extensions.
- You can't; you have to implement platform-checking logic everywhere that you want to use a progress bar.