Skip to content

Commit f6d9a78

Browse files
authored
Merge pull request #36 from creativetimofficial/v1.7.1
v1.7.1
2 parents bc98d57 + 2eaac26 commit f6d9a78

File tree

4 files changed

+26
-13
lines changed

4 files changed

+26
-13
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## [1.7.1] 2021 - 07 - 15
2+
### Updated dependencies
3+
- updated `expo@40.0.0` to `expo@42.0.0`
4+
- updated `expo-asset@8.2.1` to `expo-asset@8.3.2`
5+
- updated `expo-font@8.4.0` to `expo-font@9.2.1`
6+
- updated `galio-framework@0.7.1` to `galio-framework@0.8.0`
7+
- updated `react-native@sdk-40.0.1.tar.gz` to `react-native@sdk-42.0.0.tar.gz`
8+
- updated `react-native-gesture-handler@1.8.0` to `react-native-gesture-handler@1.10.2`
9+
- updated `react-native-reanimated@1.13.0` to `react-native-reanimated@2.2.0`
10+
- updated `react-native-safe-area-context@3.1.9` to `react-native-safe-area-context@3.2.0`
11+
- updated `react-native-screens@2.15.2` to `react-native-screens@3.4.0`
12+
13+
### Updated files
14+
- removed deprecated `useSafeArea` from `navigation/Menu.js`
15+
116
## [1.7.0] 2020 - 11 - 04
217
### Updated dependencies
318
- updated `@react-navigation/bottom-tabs@5.06` to `@react-navigation/bottom-tabs@5.5.1`

app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"ios",
88
"android"
99
],
10-
"version": "1.7.0",
10+
"version": "1.7.1",
1111
"orientation": "portrait",
1212
"icon": "./assets/icon.png",
1313
"splash": {

navigation/Menu.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from "react";
2-
import { useSafeArea } from "react-native-safe-area-context";
32
import {
43
ScrollView,
54
StyleSheet,
@@ -11,7 +10,6 @@ import Images from "../constants/Images";
1110
import { DrawerItem as DrawerCustomItem } from '../components';
1211

1312
function CustomDrawerContent({ drawerPosition, navigation, profile, focused, state, ...rest }) {
14-
const insets = useSafeArea();
1513
const screens = [
1614
"Home",
1715
"Profile",

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "argon-react-native",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"description": "Argon React Native, based on Argon Design System. Coded by Creative Tim",
55
"main": "node_modules/expo/AppEntry.js",
66
"scripts": {
@@ -21,19 +21,19 @@
2121
"@react-navigation/native": "5.9.3",
2222
"@react-navigation/stack": "5.14.3",
2323
"@use-expo/font": "^2.0.0",
24-
"expo": "^40.0.0",
24+
"expo": "^42.0.0",
2525
"expo-app-loading": "^1.0.1",
26-
"expo-asset": "~8.2.1",
27-
"expo-font": "~8.4.0",
28-
"galio-framework": "^0.7.1",
26+
"expo-asset": "~8.3.2",
27+
"expo-font": "~9.2.1",
28+
"galio-framework": "^0.8.0",
2929
"prop-types": "^15.7.2",
3030
"react": "16.13.1",
31-
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
32-
"react-native-gesture-handler": "~1.8.0",
31+
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
32+
"react-native-gesture-handler": "~1.10.2",
3333
"react-native-modal-dropdown": "git+https://github.com/siemiatj/react-native-modal-dropdown.git",
34-
"react-native-reanimated": "~1.13.0",
35-
"react-native-safe-area-context": "3.1.9",
36-
"react-native-screens": "~2.15.2"
34+
"react-native-reanimated": "~2.2.0",
35+
"react-native-safe-area-context": "3.2.0",
36+
"react-native-screens": "~3.4.0"
3737
},
3838
"devDependencies": {
3939
"babel-preset-expo": "8.3.0"

0 commit comments

Comments
 (0)