Skip to content

Commit 9817d93

Browse files
Merge pull request #36 from creativetimofficial/v1.4.0
v1.4.0
2 parents 4758bab + 0f867eb commit 9817d93

File tree

5 files changed

+34
-17
lines changed

5 files changed

+34
-17
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 from 'react';
22
import { Image } from 'react-native';
3-
import { AppLoading } from 'expo';
3+
import AppLoading from 'expo-app-loading';
44
import * as Font from 'expo-font';
55
import { Asset } from 'expo-asset';
66
import { Block, GalioProvider } from 'galio-framework';

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## [1.4.0] 2020 - 08 - 03
2+
### Updated dependencies
3+
- updated `@react-navigation/[email protected]` to `@react-navigation/[email protected]`
4+
- updated `@react-navigation/[email protected]` to `@react-navigation/[email protected]`
5+
- updated `@react-navigation/[email protected]` to `@react-navigation/[email protected]`
6+
- updated `expo SDK@39` to `expo SDK@40`
7+
8+
9+
- updated `react-native SDK@39` to `react-native SDK@40`
10+
11+
12+
13+
14+
15+
### Updated files
16+
- `useNativeDriver` warning solved for `Tabs.js`
17+
118
## [1.3.0] 2020 - 11 - 06
219
### Updated dependencies
320
- updated `@react-native-community/[email protected]` to `@react-native-community/[email protected]`

app.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
"name": "Now UI React Native",
44
"slug": "now-ui-react-native",
55
"privacy": "public",
6-
"sdkVersion": "39.0.0",
76
"platforms": [
87
"ios",
98
"android"
109
],
11-
"version": "1.3.0",
10+
"version": "1.4.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,
3939
}).start()
4040
}
4141

package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "now-ui-react-native",
3-
"version": "1.3.0",
3+
"version": "1.4.0",
44
"description": "Now UI React Native, based on Now UI Design System. Coded by Creative Tim",
55
"main": "node_modules/expo/AppEntry.js",
66
"scripts": {
@@ -18,26 +18,27 @@
1818
"@react-native-community/masked-view": "0.1.10",
1919
"@react-navigation/bottom-tabs": "^5.5.1",
2020
"@react-navigation/compat": "^5.1.25",
21-
"@react-navigation/drawer": "5.8.1",
22-
"@react-navigation/native": "5.5.0",
23-
"@react-navigation/stack": "5.4.1",
24-
"expo": "^39.0.0",
25-
"expo-asset": "~8.2.0",
26-
"expo-font": "~8.3.0",
21+
"@react-navigation/drawer": "5.12.4",
22+
"@react-navigation/native": "5.9.3",
23+
"@react-navigation/stack": "5.14.3",
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-svg": "12.1.0",
35-
"react-native-safe-area-context": "3.1.4",
36-
"react-native-screens": "~2.10.1"
35+
"react-native-safe-area-context": "3.1.9",
36+
"react-native-screens": "~2.15.2",
37+
"react-native-svg": "12.1.0"
3738
},
3839
"devDependencies": {
3940
"babel-eslint": "^10.0.3",
40-
"babel-preset-expo": "^8.3.0"
41+
"babel-preset-expo": "8.3.0"
4142
},
4243
"keywords": [
4344
"now react native",

0 commit comments

Comments
 (0)