nx-react-native-cli 2.1.3 → 2.2.0
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 +2 -2
- package/lib/index.cjs +36 -36
- package/package.json +1 -1
- package/templates/apps/mobile/Gemfile +7 -1
- package/templates/apps/mobile/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/templates/apps/mobile/android/gradle.properties +1 -1
- package/templates/apps/mobile/android/gradlew +0 -0
- package/templates/apps/mobile/android/gradlew.bat +0 -0
- package/templates/apps/mobile/fastlane/Fastfile +1 -1
- package/templates/apps/mobile/ios/AppsMobile/AppDelegate.mm +34 -14
- package/templates/apps/mobile/package.json +2 -2
- package/templates/apps/mobile/src/app/index.tsx +0 -3
- package/templates/apps/mobile/src/assets/images/.gitkeep +0 -0
- package/templates/apps/mobile/src/components/atoms/Button/button.component.tsx +3 -3
- package/templates/apps/mobile/src/components/atoms/KeyboardAwareScrollView/keyboard-aware-scroll-view.component.tsx +2 -2
- package/templates/apps/mobile/src/components/atoms/ListLoadingItem/list-loading-item.component.tsx +19 -27
- package/templates/apps/mobile/src/components/molecules/ScreenContainer/screen-container.component.tsx +27 -6
- package/templates/apps/mobile/src/assets/fonts/InterBlack.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterBlackItalic.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterBold.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterBoldItalic.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterExtraBold.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterExtraBoldItalic.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterExtraLight.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterExtraLightItalic.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterItalic.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterLight.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterLightItalic.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterMedium.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterMediumItalic.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterRegular.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterSemiBold.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterSemiBoldItalic.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterThin.ttf +0 -0
- package/templates/apps/mobile/src/assets/fonts/InterThinItalic.ttf +0 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## 📦 Introduction
|
|
7
7
|
|
|
8
|
-
A comprehensive React Native mobile application starter kit built with Nx workspace. This package provides a carefully curated set of tools and libraries to streamline your mobile app development process with React Native 0.
|
|
8
|
+
A comprehensive React Native mobile application starter kit built with Nx workspace. This package provides a carefully curated set of tools and libraries to streamline your mobile app development process with React Native 0.79.2 and the New Architecture.
|
|
9
9
|
|
|
10
10
|
<h2 id="🛠-usage">🛠 Usage</h2>
|
|
11
11
|
<p>Generate a new Nx workspace with the React Native preset:</p>
|
|
@@ -16,7 +16,7 @@ A comprehensive React Native mobile application starter kit built with Nx worksp
|
|
|
16
16
|
|
|
17
17
|
### Core Technologies
|
|
18
18
|
- **Yarn**: Fast, reliable, and secure dependency management
|
|
19
|
-
- **React Native 0.
|
|
19
|
+
- **React Native 0.79.2**: Latest version with New Architecture support
|
|
20
20
|
- **TypeScript**: Strongly typed JavaScript for better code quality
|
|
21
21
|
- **Nx Workspace**: Powerful monorepo tooling for scalable development
|
|
22
22
|
- **TailwindCSS via TWRNC**: Utility-first CSS framework for fast UI development
|