Skip to content

Commit b8f8873

Browse files
committed
📝 add note to README about React Native version limitation
1 parent 419ae0e commit b8f8873

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

README.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -442,12 +442,12 @@ return (
442442
| hourLimit | Limit on the hours it is possible to select | `{ max?: Number, min?: Number }` | - | false |
443443
| minuteLimit | Limit on the minutes it is possible to select | `{ max?: Number, min?: Number }` | - | false |
444444
| secondLimit | Limit on the seconds it is possible to select | `{ max?: Number, min?: Number }` | - | false |
445-
| maximumHours | The highest value on the hours picker | Number | 23 | false |
446-
| maximumMinutes | The highest value on the minutes picker | Number | 59 | false |
447-
| maximumSeconds | The highest value on the seconds picker | Number | 59 | false |
448-
| hourInterval | The interval between values on the hours picker | Number | 1 | false |
449-
| minuteInterval | The interval between values on the minutes picker | Number | 1 | false |
450-
| secondInterval | The interval between values on the seconds picker | Number | 1 | false |
445+
| maximumHours | The highest value on the hours picker | Number | 23 | false |
446+
| maximumMinutes | The highest value on the minutes picker | Number | 59 | false |
447+
| maximumSeconds | The highest value on the seconds picker | Number | 59 | false |
448+
| hourInterval | The interval between values on the hours picker | Number | 1 | false |
449+
| minuteInterval | The interval between values on the minutes picker | Number | 1 | false |
450+
| secondInterval | The interval between values on the seconds picker | Number | 1 | false |
451451
| hourLabel | Label for the hours picker | String \| React.ReactElement | h | false |
452452
| minuteLabel | Label for the minutes picker | String \| React.ReactElement | m | false |
453453
| secondLabel | Label for the seconds picker | String \| React.ReactElement | s | false |
@@ -639,8 +639,9 @@ To get this project running locally:
639639
2. Run `yarn setup` from the project root (this installs the project dependencies and the examples' additional dependencies)
640640
641641
You can then start either the Expo example or the bare React Native example:
642-
- For Expo, run `yarn start` to start the Expo example in Expo Go.
643-
- For bare React Native, run `yarn start-bare:android` or `start-bare:ios` to start the project on an emulator/device.
642+
643+
- For Expo, run `yarn start` to start the Expo example in Expo Go.
644+
- For bare React Native, run `yarn start-bare:android` or `start-bare:ios` to start the project on an emulator/device.
644645
645646
### GitHub Guidelines
646647
@@ -652,6 +653,12 @@ There are two permenant branches: `main` and `develop`. You should never work di
652653
653654
<br>
654655
656+
## Limitations ⚠
657+
658+
The project is not compatibile with React Native versions prior to `v0.72.0` due to this [React Native issue](https://github.com/facebook/react-native/issues/36329).
659+
660+
<br>
661+
655662
## License 📝
656663
657664
This project is licensed under the [MIT License](LICENSE).

0 commit comments

Comments
 (0)