@lodev09/react-native-true-sheet 0.11.0 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,25 +9,29 @@ The true native bottom sheet experience for your React Native Apps. 💩
9
9
  <img alt="React Native True Sheet" src="docs/static/img/preview.gif" width="600px" />
10
10
 
11
11
  ## Features
12
- * ✅ Implemented in the native realm.
13
- * **_NOT_** your pure JS, (re)animated view (might integrate in the future 👀)
14
- * Clean, fast, and lightweight.
15
- * Handles your _Scrolling_ needs, natively.
16
- * Handles your _Footer_ needs, natively.
17
- * ✅ Handles your _Keyboard_ needs, natively.
18
- * ✅ Asynchronus `ref` [methods](https://sheet.lodev09.com/reference/methods#ref-methods).
19
- * ✅ Bonus! [Blur](https://sheet.lodev09.com/reference/types#blurtint) support on IOS 😎
12
+
13
+ * Implemented in the native realm.
14
+ * Clean, fast, and lightweight.
15
+ * Asynchronus `ref` [methods](https://sheet.lodev09.com/reference/methods#ref-methods).
16
+ * Bonus! [Blur](https://sheet.lodev09.com/reference/types#blurtint) support on IOS 😎
20
17
 
21
18
  ## Installation
22
19
 
20
+ You can install the package by using either `yarn` or `npm`.
21
+
23
22
  ```sh
24
23
  yarn add @lodev09/react-native-true-sheet
25
24
  ```
26
-
27
25
  ```sh
28
26
  npm i @lodev09/react-native-true-sheet
29
27
  ```
30
28
 
29
+ Next, run the following to install it on IOS.
30
+
31
+ ```sh
32
+ cd ios && pod install
33
+ ```
34
+
31
35
  ## Documentation
32
36
 
33
37
  - [Guides](https://sheet.lodev09.com/category/guides)
@@ -69,15 +73,10 @@ export const App = () => {
69
73
  }
70
74
  ```
71
75
 
72
- ## TODO (v1)
73
-
74
- - [ ] Test with RN new architecture
75
- - [ ] Reanimated integration(?)
76
-
77
76
  ## Contributing
78
77
 
79
78
  See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
80
79
 
81
80
  ## License
82
81
 
83
- MIT
82
+ [MIT](LICENSE)
@@ -7,3 +7,6 @@
7
7
  //
8
8
 
9
9
  #import <React/RCTViewManager.h>
10
+ #import <React/RCTUIManager.h>
11
+ #import <React/RCTTouchHandler.h>
12
+ #import <React/RCTScrollView.h>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lodev09/react-native-true-sheet",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "The true native bottom sheet experience for your React Native Apps.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -48,7 +48,7 @@
48
48
  "type": "git",
49
49
  "url": "git+https://github.com/lodev09/react-native-true-sheet.git"
50
50
  },
51
- "author": "lodev09 <lodev09@gmail.com> (https://github.com/lodev09)",
51
+ "author": "Jovanni Lo <lodev09@gmail.com> (https://github.com/lodev09)",
52
52
  "license": "MIT",
53
53
  "bugs": {
54
54
  "url": "https://github.com/lodev09/react-native-true-sheet/issues"