diff --git a/docs/progressviewios.md b/docs/progressviewios.md deleted file mode 100644 index fd7839adac3..00000000000 --- a/docs/progressviewios.md +++ /dev/null @@ -1,124 +0,0 @@ ---- -id: progressviewios -title: '🚧 ProgressViewIOS' ---- - -> **Removed.** Use one of the [community packages](https://reactnative.directory/?search=progressview) instead. - -Uses `ProgressViewIOS` to render a UIProgressView on iOS. - -### Example - -```SnackPlayer name=ProgressViewIOS&supportedPlatforms=ios&disableLinting=true -import React from 'react'; -import {View, StyleSheet, ProgressViewIOS, Text} from 'react-native'; - -const App = () => { - return ( - - - Progress Bar - 0% - - - - Colored Progress Bar - 50% - - - - Progress Bar - 100% - - - - ); -}; - -const styles = StyleSheet.create({ - container: { - flex: 1, - justifyContent: 'center', - alignItems: 'center', - }, - example: { - marginVertical: 20, - }, - progress: { - width: 200, - }, -}); - -export default App; -``` - ---- - -# Reference - -## Props - -Inherits [View Props](view.md#props). - -### `progress` - -The progress value (between 0 and 1). - -| Type | Required | -| ------ | -------- | -| number | No | - ---- - -### `progressImage` - -A stretchable image to display as the progress bar. - -| Type | Required | -| ---------------------- | -------- | -| Image.propTypes.source | No | - ---- - -### `progressTintColor` - -The tint color of the progress bar itself. - -| Type | Required | -| ------ | -------- | -| string | No | - ---- - -### `progressViewStyle` - -The progress bar style. - -| Type | Required | -| ---------------------- | -------- | -| enum('default', 'bar') | No | - ---- - -### `trackImage` - -A stretchable image to display behind the progress bar. - -| Type | Required | -| ---------------------- | -------- | -| Image.propTypes.source | No | - ---- - -### `trackTintColor` - -The tint color of the progress bar track. - -| Type | Required | -| ------ | -------- | -| string | No | diff --git a/website/blog/2023-06-21-0.72-metro-package-exports-symlinks.md b/website/blog/2023-06-21-0.72-metro-package-exports-symlinks.md index c23bac46c89..a3311e72f5f 100644 --- a/website/blog/2023-06-21-0.72-metro-package-exports-symlinks.md +++ b/website/blog/2023-06-21-0.72-metro-package-exports-symlinks.md @@ -124,9 +124,9 @@ You can read the 0.72 updates for the New Architecture [here](https://github.com The following packages have been removed from React Native in 0.72. Please migrate to the recommended community package: -- [Slider](/docs/next/slider) is superseded by [@react-native-community/slider](https://github.com/callstack/react-native-slider/tree/main/package) -- [DatePickerIOS](/docs/next/datepickerios) is superseded by [@react-native-community/datetimepicker](https://github.com/react-native-datetimepicker/datetimepicker) -- [ProgressViewIOS](/docs/next/progressviewios) is superseded by [@react-native-community/progress-view](https://github.com/react-native-progress-view/progress-view) +- [Slider](https://reactnative.dev/docs/0.72/slider) is superseded by [@react-native-community/slider](https://github.com/callstack/react-native-slider/tree/main/package) +- [DatePickerIOS](https://reactnative.dev/docs/0.72/datepickerios) is superseded by [@react-native-community/datetimepicker](https://github.com/react-native-datetimepicker/datetimepicker) +- [ProgressViewIOS](https://reactnative.dev/docs/0.72/progressviewios) is superseded by [@react-native-community/progress-view](https://github.com/react-native-progress-view/progress-view) ### Package Renames