Skip to content

Commit e37e512

Browse files
committed
Finally Version 1 is here
1 parent d96bb86 commit e37e512

File tree

6 files changed

+8
-80
lines changed

6 files changed

+8
-80
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ npm i react-navigation-helpers
3131

3232
## React Navigation Versions
3333

34-
- Use **v0.2.0+** for ReactNavigation **v5**
35-
- Use **v0.1.0+** for ReactNavigation **v4**
34+
| Version | Supported React Navigation Version |
35+
| ------- | ---------------------------------- |
36+
| 1.0.0 | v6 |
37+
| 0.2.0 | v5 |
38+
| < 0.1.0 | v4 |
3639

3740
## Usage
3841

SECURITY.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-navigation-helpers",
3-
"version": "2.0.0",
3+
"version": "1.0.0",
44
"description": "Easy to use React Navigation with these helpers for React Navigation on React Native",
55
"keywords": [
66
"v5",

v6-example/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { createNativeStackNavigator } from "@react-navigation/native-stack";
77
* ? Local Imports
88
*/
99
import HomeScreen from "./src/screens/HomeScreen";
10-
import { isReadyRef, navigationRef } from "./lib/NavigationService";
10+
import { isReadyRef, navigationRef } from "./build/dist/NavigationService";
1111

1212
const Stack = createNativeStackNavigator();
1313
const Tab = createBottomTabNavigator();

v6-example/lib/NavigationService.ts

Lines changed: 0 additions & 54 deletions
This file was deleted.

v6-example/src/screens/HomeScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { View, Text, Button, StyleProp, ViewStyle } from "react-native";
3-
import * as NavigationService from "../../lib/NavigationService";
3+
import * as NavigationService from "../../build/dist/NavigationService";
44
/**
55
* ? Local Imports
66
*/

0 commit comments

Comments
 (0)