forked from vergnet/application-amicale
Updated some libraries
This commit is contained in:
parent
f8d148d7ce
commit
83d7aad2fe
4 changed files with 13 additions and 13 deletions
20
package.json
20
package.json
|
@ -22,23 +22,23 @@
|
|||
"@nartc/react-native-barcode-mask": "^1.2.0",
|
||||
"@react-native-community/async-storage": "^1.11.0",
|
||||
"@react-native-community/masked-view": "^0.1.10",
|
||||
"@react-native-community/push-notification-ios": "^1.2.2",
|
||||
"@react-native-community/push-notification-ios": "^1.3.0",
|
||||
"@react-native-community/slider": "^3.0.0",
|
||||
"@react-navigation/bottom-tabs": "^5.5.2",
|
||||
"@react-navigation/native": "^5.5.1",
|
||||
"@react-navigation/stack": "^5.5.1",
|
||||
"i18n-js": "^3.3.0",
|
||||
"@react-navigation/bottom-tabs": "^5.7.0",
|
||||
"@react-navigation/native": "^5.7.0",
|
||||
"@react-navigation/stack": "^5.7.0",
|
||||
"i18n-js": "^3.7.1",
|
||||
"react": "16.11.0",
|
||||
"react-native": "0.62.2",
|
||||
"react-native-animatable": "^1.3.3",
|
||||
"react-native-app-intro-slider": "^4.0.0",
|
||||
"react-native-appearance": "^0.3.3",
|
||||
"react-native-appearance": "^0.3.4",
|
||||
"react-native-autolink": "^3.0.0",
|
||||
"react-native-calendars": "^1.300.0",
|
||||
"react-native-camera": "^3.30.0",
|
||||
"react-native-camera": "^3.31.1",
|
||||
"react-native-collapsible": "^1.5.2",
|
||||
"react-native-gesture-handler": "^1.6.1",
|
||||
"react-native-image-modal": "^1.0.8",
|
||||
"react-native-image-modal": "^1.0.9",
|
||||
"react-native-keychain": "6.0.0",
|
||||
"react-native-linear-gradient": "^2.5.6",
|
||||
"react-native-localize": "^1.4.0",
|
||||
|
@ -51,9 +51,9 @@
|
|||
"react-native-safe-area-context": "0.7.3",
|
||||
"react-native-screens": "^2.9.0",
|
||||
"react-native-splash-screen": "^3.2.0",
|
||||
"react-native-vector-icons": "^6.6.0",
|
||||
"react-native-vector-icons": "^7.0.0",
|
||||
"react-native-webview": "10.1.1",
|
||||
"react-navigation-collapsible": "^5.6.1",
|
||||
"react-navigation-collapsible": "^5.6.3",
|
||||
"react-navigation-header-buttons": "^4.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -191,7 +191,7 @@ class HomeScreen extends React.Component<Props, State> {
|
|||
const onPressSettings = () => this.props.navigation.navigate("settings");
|
||||
return <MaterialHeaderButtons>
|
||||
<Item title="log" iconName={logIcon} color={logColor} onPress={onPressLog}/>
|
||||
<Item title={i18n.t("screens.settings.title")} iconName={"settings"} onPress={onPressSettings}/>
|
||||
<Item title={i18n.t("screens.settings.title")} iconName={"cog"} onPress={onPressSettings}/>
|
||||
</MaterialHeaderButtons>;
|
||||
};
|
||||
|
||||
|
|
|
@ -370,7 +370,7 @@ class PlanexScreen extends React.Component<Props, State> {
|
|||
buttons={{
|
||||
action: {
|
||||
message: i18n.t("screens.planex.mascotDialog.ok"),
|
||||
icon: "settings",
|
||||
icon: "cog",
|
||||
onPress: this.onGoToSettings,
|
||||
},
|
||||
cancel: {
|
||||
|
|
|
@ -256,7 +256,7 @@ class PlanningScreen extends React.Component<Props, State> {
|
|||
visible={this.state.mascotDialogVisible}
|
||||
title={i18n.t("screens.planning.mascotDialog.title")}
|
||||
message={i18n.t("screens.planning.mascotDialog.message")}
|
||||
icon={"glass-cocktail"}
|
||||
icon={"party-popper"}
|
||||
buttons={{
|
||||
action: null,
|
||||
cancel: {
|
||||
|
|
Loading…
Reference in a new issue