esoftplay 0.0.115-y → 0.0.116

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.
@@ -6,7 +6,6 @@ import * as Font from "expo-font";
6
6
  import React, { useEffect } from "react";
7
7
  import { Platform, View } from "react-native";
8
8
  import { GestureHandlerRootView } from 'react-native-gesture-handler';
9
- import Navs from "../../cache/navs";
10
9
 
11
10
  export interface UserIndexProps {
12
11
 
@@ -107,7 +106,8 @@ export default function UserIndex(props: UserIndexProps): any {
107
106
  loading ?
108
107
  <UserLoading />
109
108
  :
110
- <Navs user={user} initialState={initialState} handler={handler} />
109
+ <View style={{ backgroundColor: 'red', flex: 1 }} />
110
+ // <Navs user={user} initialState={initialState} handler={handler} />
111
111
  }
112
112
  <LibNet_status />
113
113
  <LibDialog style={'default'} />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.115-y",
3
+ "version": "0.0.116",
4
4
  "description": "embedding data from esoftplay framework (web based) into mobile app",
5
5
  "main": "cache/index.js",
6
6
  "types": "../../index.d.ts",