@fto-consult/expo-ui 6.21.21 → 6.21.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.21.21",
3
+ "version": "6.21.22",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import React from "$react"
2
- import { AppState} from "react-native";
2
+ import { AppState,View,Text} from "react-native";
3
3
  import BackHandler from "$ecomponents/BackHandler";
4
4
  import * as Linking from 'expo-linking';
5
5
  import APP from "$capp";
@@ -59,6 +59,7 @@ const NAVIGATION_PERSISTENCE_KEY = 'NAVIGATION_STATE';
59
59
  * getStartedRouteName : la route par défaut de getStarted lorsque l'application est en mode getStarted, c'est à dire lorsque la fonction init renvoie une erreur (reject)
60
60
  */
61
61
  function App({init:initApp,initialRouteName:appInitialRouteName,render,onMount}) {
62
+ return <View><Text>Un test pas comme les tttt</Text></View>;
62
63
  AppStateService.init();
63
64
  const {FontsIconsFilter,beforeExit,preferences:appPreferences,getStartedRouteName} = useContext();
64
65
  const [initialState, setInitialState] = React.useState(undefined);