From 018074df4896d6365e9fd1e94caff519058dd498 Mon Sep 17 00:00:00 2001 From: Kweku Quansah Date: Mon, 8 Jun 2020 14:55:37 +0200 Subject: [PATCH 1/7] fix: removing duplicate style from elements screen. --- screens/Elements.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/screens/Elements.js b/screens/Elements.js index a6e58f7..5a96104 100644 --- a/screens/Elements.js +++ b/screens/Elements.js @@ -442,9 +442,6 @@ const styles = StyleSheet.create({ inputTheme: { borderBottomColor: argonTheme.COLORS.PRIMARY }, - inputTheme: { - borderBottomColor: argonTheme.COLORS.PRIMARY - }, inputInfo: { borderBottomColor: argonTheme.COLORS.INFO }, From 36973df709338262091428d253f29852d05a209a Mon Sep 17 00:00:00 2001 From: Andrej Guran Date: Sat, 3 Oct 2020 19:57:27 +0200 Subject: [PATCH 2/7] Update App.js When fontsLoaded == false and isLoadingComplete == true then none of the branches is executed and the App component returns undefined in the render function which results in invariant violation: Nothing was returned from render. This small fix should address this by returning null until fonts are loaded --- App.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/App.js b/App.js index d932b6d..d7670af 100644 --- a/App.js +++ b/App.js @@ -75,6 +75,8 @@ export default props => { ); + } else { + return null } } From 36880617a4d242c9bdaa2223caadeec2d055d78b Mon Sep 17 00:00:00 2001 From: Alin Gheorghe Date: Mon, 2 Nov 2020 20:58:41 +0200 Subject: [PATCH 3/7] v1.6.0 init --- app.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.json b/app.json index f3ec751..f057dc3 100644 --- a/app.json +++ b/app.json @@ -8,7 +8,7 @@ "ios", "android" ], - "version": "1.5.0", + "version": "1.6.0", "orientation": "portrait", "icon": "./assets/icon.png", "splash": { diff --git a/package.json b/package.json index 8dd8a16..0138114 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "argon-react-native", - "version": "1.5.0", + "version": "1.6.0", "description": "Argon React Native, based on Argon Design System. Coded by Creative Tim", "main": "node_modules/expo/AppEntry.js", "scripts": { From 19e7d1d1307a5bb183c5d9e0d24b3fc1d52d9741 Mon Sep 17 00:00:00 2001 From: Alin Gheorghe Date: Mon, 2 Nov 2020 21:02:23 +0200 Subject: [PATCH 4/7] expo galio and dropdown packages updated --- app.json | 2 +- package.json | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app.json b/app.json index f057dc3..868c7cd 100644 --- a/app.json +++ b/app.json @@ -3,7 +3,7 @@ "name": "Argon FREE React Native", "slug": "argon-free-react-native", "privacy": "public", - "sdkVersion": "37.0.0", + "sdkVersion": "39.0.0", "platforms": [ "ios", "android" diff --git a/package.json b/package.json index 0138114..5d4f26d 100644 --- a/package.json +++ b/package.json @@ -14,28 +14,28 @@ "url": "git+https://github.com/creativetimofficial/argon-react-native.git" }, "dependencies": { - "@react-native-community/masked-view": "0.1.6", + "@react-native-community/masked-view": "0.1.10", "@react-navigation/bottom-tabs": "^5.0.6", "@react-navigation/compat": "^5.0.0", "@react-navigation/drawer": "5.0.0", "@react-navigation/native": "5.0.0", "@react-navigation/stack": "5.0.0", "@use-expo/font": "^2.0.0", - "expo": "^37.0.0", - "expo-asset": "~8.1.5", - "expo-font": "~8.1.0", - "galio-framework": "^0.6.3", + "expo": "^39.0.0", + "expo-asset": "~8.2.0", + "expo-font": "~8.3.0", + "galio-framework": "^0.7.1", "prop-types": "^15.7.2", - "react": "16.9.0", - "react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz", - "react-native-gesture-handler": "~1.6.0", - "react-native-modal-dropdown": "^0.7.0", - "react-native-reanimated": "~1.7.0", - "react-native-safe-area-context": "0.7.3", - "react-native-screens": "~2.2.0" + "react": "16.13.1", + "react-native": "https://github.com/expo/react-native/archive/sdk-39.0.3.tar.gz", + "react-native-gesture-handler": "~1.7.0", + "react-native-modal-dropdown": "git+https://github.com/siemiatj/react-native-modal-dropdown.git", + "react-native-reanimated": "~1.13.0", + "react-native-safe-area-context": "3.1.4", + "react-native-screens": "~2.10.1" }, "devDependencies": { - "babel-preset-expo": "^8.2.1" + "babel-preset-expo": "^8.3.0" }, "keywords": [ "argon react native", From 4fd0f592fab6b08fe2e1f53fcec9b31d7a649595 Mon Sep 17 00:00:00 2001 From: Alin Gheorghe Date: Tue, 3 Nov 2020 19:23:15 +0200 Subject: [PATCH 5/7] Elements and Profile screens --- screens/Elements.js | 4 ++-- screens/Profile.js | 11 +++-------- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/screens/Elements.js b/screens/Elements.js index a6e58f7..d46eefd 100644 --- a/screens/Elements.js +++ b/screens/Elements.js @@ -62,7 +62,7 @@ class Elements extends React.Component { - +