Skip to content

Commit bc98d57

Browse files
Merge pull request #31 from creativetimofficial/v1.7.0
v1.7.0
2 parents 8f9705f + 6b1e82e commit bc98d57

File tree

6 files changed

+41
-20
lines changed

6 files changed

+41
-20
lines changed

App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, {useState} from "react";
22
import { Image } from "react-native";
3-
import { AppLoading } from "expo";
3+
import AppLoading from "expo-app-loading";
44
import { useFonts } from '@use-expo/font';
55
import { Asset } from "expo-asset";
66
import { Block, GalioProvider } from "galio-framework";

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## [1.7.0] 2020 - 11 - 04
2+
### Updated dependencies
3+
- updated `@react-navigation/bottom-tabs@5.06` to `@react-navigation/bottom-tabs@5.5.1`
4+
- updated `@react-navigation/compat@5.0.0` to `@react-navigation/compat@5.1.25`
5+
- updated `@react-navigation/drawer@5.0.0` to `@react-navigation/drawer@5.12.4`
6+
- updated `@react-navigation/native@5.0.0` to `@react-navigation/native@5.9.3`
7+
- updated `@react-navigation/stack@5.0.0` to `@react-navigation/stack@5.14.3`
8+
- updated `expo SDK@39` to `expo SDK@40`
9+
- updated `expo-asset@8.2.0` to `expo-asset@8.2.1`
10+
- updated `expo-font@8.3.0` to `expo-font@8.4.0`
11+
- updated `react-native SDK@39` to `react-native SDK@40`
12+
- updated `react-native-gesture-handler@1.7.0` to `react-native-gesture-handler@1.8.0`
13+
- updated `react-native-safe-area-context@3.1.4` to `react-native-safe-area-context@3.1.9`
14+
- updated `react-native-screens@2.10.1` to `react-native-screens@2.15.2`
15+
- added `expo-app-loading@1.01`
16+
17+
### Updated files
18+
- `useNativeDriver` warning fixed in `Tabs.js`
19+
- card height changed in `Register.js`
20+
21+
122
## [1.6.0] 2020 - 11 - 04
223
### Updated dependencies
324
- updated `expo-asset@8.1.5` to `expo-asset@8.2.0`

app.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
"name": "Argon FREE React Native",
44
"slug": "argon-free-react-native",
55
"privacy": "public",
6-
"sdkVersion": "39.0.0",
76
"platforms": [
87
"ios",
98
"android"
109
],
11-
"version": "1.6.0",
10+
"version": "1.7.0",
1211
"orientation": "portrait",
1312
"icon": "./assets/icon.png",
1413
"splash": {

components/Tabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default class Tabs extends React.Component {
3535
Animated.timing(this.animatedValue, {
3636
toValue: 1,
3737
duration: 300,
38-
// useNativeDriver: true, // color not supported
38+
useNativeDriver: false, // color not supported
3939
}).start()
4040
}
4141

package.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "argon-react-native",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"description": "Argon React Native, based on Argon Design System. Coded by Creative Tim",
55
"main": "node_modules/expo/AppEntry.js",
66
"scripts": {
@@ -15,27 +15,28 @@
1515
},
1616
"dependencies": {
1717
"@react-native-community/masked-view": "0.1.10",
18-
"@react-navigation/bottom-tabs": "^5.0.6",
19-
"@react-navigation/compat": "^5.0.0",
20-
"@react-navigation/drawer": "5.0.0",
21-
"@react-navigation/native": "5.0.0",
22-
"@react-navigation/stack": "5.0.0",
18+
"@react-navigation/bottom-tabs": "^5.5.1",
19+
"@react-navigation/compat": "^5.1.25",
20+
"@react-navigation/drawer": "5.12.4",
21+
"@react-navigation/native": "5.9.3",
22+
"@react-navigation/stack": "5.14.3",
2323
"@use-expo/font": "^2.0.0",
24-
"expo": "^39.0.0",
25-
"expo-asset": "~8.2.0",
26-
"expo-font": "~8.3.0",
24+
"expo": "^40.0.0",
25+
"expo-app-loading": "^1.0.1",
26+
"expo-asset": "~8.2.1",
27+
"expo-font": "~8.4.0",
2728
"galio-framework": "^0.7.1",
2829
"prop-types": "^15.7.2",
2930
"react": "16.13.1",
30-
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.3.tar.gz",
31-
"react-native-gesture-handler": "~1.7.0",
31+
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
32+
"react-native-gesture-handler": "~1.8.0",
3233
"react-native-modal-dropdown": "git+https://github.com/siemiatj/react-native-modal-dropdown.git",
3334
"react-native-reanimated": "~1.13.0",
34-
"react-native-safe-area-context": "3.1.4",
35-
"react-native-screens": "~2.10.1"
35+
"react-native-safe-area-context": "3.1.9",
36+
"react-native-screens": "~2.15.2"
3637
},
3738
"devDependencies": {
38-
"babel-preset-expo": "^8.3.0"
39+
"babel-preset-expo": "8.3.0"
3940
},
4041
"keywords": [
4142
"argon react native",

screens/Register.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Register extends React.Component {
2222
source={Images.RegisterBackground}
2323
style={{ width, height, zIndex: 1 }}
2424
>
25-
<Block flex middle>
25+
<Block safe flex middle>
2626
<Block style={styles.registerContainer}>
2727
<Block flex={0.25} middle style={styles.socialConnect}>
2828
<Text color="#8898AA" size={12}>
@@ -162,7 +162,7 @@ class Register extends React.Component {
162162
const styles = StyleSheet.create({
163163
registerContainer: {
164164
width: width * 0.9,
165-
height: height * 0.78,
165+
height: height * 0.875,
166166
backgroundColor: "#F4F5F7",
167167
borderRadius: 4,
168168
shadowColor: argonTheme.COLORS.BLACK,

0 commit comments

Comments
 (0)