Browse Source

Added notes about react native screens

Arnaud Vergnet 3 years ago
parent
commit
d6ce72d195
2 changed files with 9 additions and 2 deletions
  1. 1
    1
      App.js
  2. 8
    1
      NOTES.md

+ 1
- 1
App.js View File

@@ -73,7 +73,7 @@ export default class App extends React.Component<Props, State> {
73 73
     }
74 74
 
75 75
     /**
76
-     * THe app has been started by an url, and it has been parsed.
76
+     * The app has been started by an url, and it has been parsed.
77 77
      * Set a new default start route based on the data parsed.
78 78
      *
79 79
      * @param parsedData The data parsed from the url

+ 8
- 1
NOTES.md View File

@@ -31,8 +31,15 @@ Librairie utilisée pour afficher une carte en utilisant OSM. N'a pas été util
31 31
 
32 32
 [Dépot](https://github.com/react-native-mapbox-gl/maps)
33 33
 
34
-## _2020-06-23_ |react-native-webview
34
+## _2020-06-23_ | react-native-webview
35 35
 
36 36
 Rester en v10.1.1 car à partir de la v10.2.0, une erreur de compilation de la librairie est présente.
37 37
 
38 38
 [Dépot](https://github.com/react-native-community/react-native-webview) | [Référence](https://github.com/react-native-community/react-native-webview/issues/1437)
39
+
40
+## _2020-06-23_ | react-native-screens
41
+
42
+Cette librairie permet d'améliorer les performances de la navigation en utilisant les optimisations natives.
43
+En revanche, activer le support pour screens fait crash l'appli sur android 9+ lors de la navigation pour sortir d'un écran avec une webview.
44
+
45
+[Dépot](https://github.com/react-native-community/react-native-webview) | [Référence](https://github.com/react-native-community/react-native-webview/issues/1437)

Loading…
Cancel
Save