tsrntemp 1.1.3 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/template/.node-version +1 -1
- package/template/.prettierrc.js +15 -7
- package/template/Gemfile +6 -6
- package/template/Gemfile.lock +98 -0
- package/template/android/app/src/main/java/com/template/MainActivity.java +35 -40
- package/template/android/gradlew +234 -234
- package/template/ios/Podfile.lock +652 -0
- package/template/ios/template.xcodeproj/project.pbxproj +704 -702
- package/template/ios/template.xcworkspace/contents.xcworkspacedata +10 -0
- package/template/package.json +14 -13
- package/template/src/config/color.ts +37 -37
- package/template/src/config/routeArr.ts +25 -0
- package/template/src/pages/Home/index.tsx +24 -14
- package/template/src/pages/Login/index.tsx +58 -0
- package/template/src/pages/Mine/index.tsx +27 -14
- package/template/src/route/BottomTab.tsx +42 -9
- package/template/src/route/RouteContainer.tsx +152 -24
- package/template/src/types/RouteParamList.ts +4 -3
- package/template/src/utils/request.ts +5 -6
- package/template/src/utils/storage.ts +13 -15
- package/template/yarn.lock +1344 -1228
- package/template/.editorconfig +0 -16
- package/template/.ruby-version +0 -1
- package/template/jest.config.js +0 -4
- package/template/src/config/routeConfig.ts +0 -11
- package/template/src/types/RoteConfig.ts +0 -9
package/template/.editorconfig
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# http://editorconfig.org
|
2
|
-
root = true
|
3
|
-
|
4
|
-
[*]
|
5
|
-
indent_style = space
|
6
|
-
indent_size = 2
|
7
|
-
end_of_line = lf
|
8
|
-
charset = utf-8
|
9
|
-
trim_trailing_whitespace = true
|
10
|
-
insert_final_newline = true
|
11
|
-
|
12
|
-
[*.md]
|
13
|
-
trim_trailing_whitespace = false
|
14
|
-
|
15
|
-
[Makefile]
|
16
|
-
indent_style = tab
|
package/template/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
2.7.6
|
package/template/jest.config.js
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from "react"
|
2
|
-
import { NativeStackNavigationOptions } from '@react-navigation/native-stack';
|
3
|
-
import { StackParamList } from "./RouteParamList";
|
4
|
-
|
5
|
-
export type RouteConfig = {
|
6
|
-
name: keyof StackParamList,
|
7
|
-
component: React.ComponentType
|
8
|
-
options?: NativeStackNavigationOptions
|
9
|
-
}
|