nextjs-nativewind 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/app/index.jsx +1 -1
  2. package/package.json +3 -5
package/app/index.jsx CHANGED
@@ -1,8 +1,8 @@
1
1
  import { Dimensions, StyleSheet, Text, View } from "react-native";
2
2
 
3
-
4
3
  const { width, height } = Dimensions.get("screen");
5
4
 
5
+ // Note: In app.js , change the "scheme" to match your project name.
6
6
  const Home = () => {
7
7
  return (
8
8
  <View
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextjs-nativewind",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Expo template with Expo Router (Next.js-style routing) and NativeWind preconfigured.",
5
5
  "keywords": [
6
6
  "expo",
@@ -25,15 +25,13 @@
25
25
  "expo-status-bar": "~2.2.3",
26
26
  "nativewind": "^4.1.23",
27
27
  "prettier-plugin-tailwindcss": "^0.5.14",
28
+ "react": "19.0.0",
29
+ "react-native": "0.79.5",
28
30
  "react-native-reanimated": "~3.17.4",
29
31
  "react-native-safe-area-context": "^5.4.0",
30
32
  "react-native-screens": "~4.11.1",
31
33
  "tailwindcss": "^3.4.17"
32
34
  },
33
- "peerDependencies": {
34
- "react": ">=18.0.0 <20.0.0",
35
- "react-native": ">=0.72.0 <0.80.0"
36
- },
37
35
  "devDependencies": {
38
36
  "@babel/core": "^7.20.0"
39
37
  },