-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#147188999] Upgrade React Native framework (#31)
* [#147805691] Add MixPanel support * [#147805691] Improve MixPanel support, from code review * [#148019251] Add analytics for app state changes * [#148019251] Improve analytics for app state changes, from code review * [#148019251] Improve naming and types for app state changes, from code review * [#148019361] Add analytics for SPID login * [#148019361] Improve analytics for SPID login, from code review * [#148019361] Improve naming and types for analytics, from code review * [#147188999] Upgrade React Native framework (#30) * Upgrade React Native to v0.46.1 * Upgrade dependencies, NativeBase to v2.2.1 * [#148019361] Improve naming for constants around the codebase, just use one style, from code review * [#148019361] Add .editorconfig * [#148019361] Improve naming for constants around the codebase, add missing occurrences
- Loading branch information
Showing
24 changed files
with
655 additions
and
291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"presets": ["react-native"] | ||
} | ||
"presets": ["react-native"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# From https://github.com/facebook/react-native/blob/master/.editorconfig | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,7 +140,7 @@ class ProfileComponent extends React.Component { | |
<Text style={StyleSheet.flatten(ProfileStyles.preferenceHeaderText)}>DOMICILIO PEC</Text> | ||
</ListItem> | ||
<ListItem icon last onPress={() => { | ||
this.props.navigation.navigate(ROUTES.DIGITALADDRESS) | ||
this.props.navigation.navigate(ROUTES.DIGITAL_ADDRESS) | ||
}}> | ||
<Body><Text>[email protected]</Text></Body> | ||
<Right> | ||
|
@@ -154,7 +154,7 @@ class ProfileComponent extends React.Component { | |
<Text style={StyleSheet.flatten(ProfileStyles.preferenceHeaderText)}>AVVISI E SCADENZE</Text> | ||
</ListItem> | ||
<ListItem icon onPress={() => { | ||
this.props.navigation.navigate(ROUTES.SENDERSELECTION) | ||
this.props.navigation.navigate(ROUTES.SENDER_SELECTION) | ||
}}> | ||
<Body> | ||
<Text>Enti abilitati</Text> | ||
|
@@ -165,7 +165,7 @@ class ProfileComponent extends React.Component { | |
</Right> | ||
</ListItem> | ||
<ListItem icon onPress={() => { | ||
this.props.navigation.navigate(ROUTES.TOPICSSELECTION) | ||
this.props.navigation.navigate(ROUTES.TOPICS_SELECTION) | ||
}}> | ||
<Body> | ||
<Text>Tipologie</Text> | ||
|
Oops, something went wrong.