Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# react-native-improved


- **Supports only react-native 0.73**.
- **Supports ONLY react-native 0.73**.
- Support for other versions will be added in the future ([#18](https://github.com/fabOnReact/react-native-improved/issues/18)).

Provides different react-native iOS, Android and JS API fixes/PRs.
Expand All @@ -16,7 +16,7 @@ In package.json

```diff
"scripts": {
+ "postinstall": "yarn patch"
+ "postinstall": "yarn run react-native-patch"
}
```

Expand All @@ -25,13 +25,25 @@ Then
## npm

```sh
npm install react-native-improved
npm install react-native-improved --save-dev
```

## yarn
## yarn v1

```sh
yarn add react-native-improved
yarn add react-native-improved --dev
```

## yarn v2, v3, v4

```sh
yarn add react-native-improved --dev
```

create a file `.yarnrc.yml` with:

```
nodeLinker: node-modules
```

## Feature Requests
Expand Down