Skip to content

Commit db2782a

Browse files
Merge pull request #7 from creativetimofficial/v1.1.0
V1.1.0
2 parents 5a00169 + 5fc8425 commit db2782a

6 files changed

Lines changed: 27 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1+
## [1.1.0] 2019-06-21
2+
### Updated dependencies
3+
- `expo@32.0.0` to `expo@33.0.0`
4+
- `galio-framework@0.5.1` to `galio-framework@0.5.3`
5+
- `react-native SDK@32.0.0` to `react-native SDK@33.0.0`
6+
- `react-navigation@3.8.1` to `react-navigation@3.11.0`
7+
- `react@16.5.0` to `react@16.8.3`
8+
- added `expo-font@5.0.1`
9+
10+
111
## [1.0.0] 2019-06-07
212
### Initial Release

app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"name": "Argon FREE React Native",
44
"slug": "argon-free-react-native",
55
"privacy": "public",
6-
"sdkVersion": "32.0.0",
6+
"sdkVersion": "33.0.0",
77
"platforms": [
88
"ios",
99
"android"
1010
],
11-
"version": "1.0.0",
11+
"version": "1.1.0",
1212
"orientation": "portrait",
1313
"icon": "./assets/icon.png",
1414
"splash": {

components/Icon.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { Font } from 'expo';
2+
import * as Font from 'expo-font';
33
import { createIconSetFromIcoMoon } from '@expo/vector-icons';
44
import { Icon } from 'galio-framework';
55

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "argon-react-native",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Argon React Native, based on Argon Design System. Coded by Creative Tim",
55
"main": "node_modules/expo/AppEntry.js",
66
"scripts": {
@@ -14,13 +14,14 @@
1414
"url": "git+https://github.com/creativetimofficial/argon-react-native.git"
1515
},
1616
"dependencies": {
17-
"expo": "^32.0.0",
18-
"galio-framework": "^0.5.1",
17+
"expo": "^33.0.0",
18+
"expo-font": "^5.0.1",
19+
"galio-framework": "^0.5.3",
1920
"prop-types": "^15.7.2",
20-
"react": "16.5.0",
21-
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
21+
"react": "16.8.3",
22+
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
2223
"react-native-modal-dropdown": "^0.6.2",
23-
"react-navigation": "^3.8.1"
24+
"react-navigation": "^3.11.0"
2425
},
2526
"devDependencies": {
2627
"babel-preset-expo": "^5.0.0"

screens/Elements.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ class Elements extends React.Component {
286286
<Block row middle space="between" style={{ paddingTop: 7 }}>
287287
<Text size={14}>Manage Options</Text>
288288
<Icon
289-
name="stre-right"
290-
family="Galio"
289+
name="chevron-right"
290+
family="entypo"
291291
style={{ paddingRight: 5 }}
292292
/>
293293
</Block>
@@ -312,7 +312,7 @@ class Elements extends React.Component {
312312
onlyIcon
313313
shadowless
314314
icon="facebook"
315-
iconFamily="FontAwesome"
315+
iconFamily="Font-Awesome"
316316
iconColor={theme.COLORS.WHITE}
317317
iconSize={theme.SIZES.BASE * 1.625}
318318
color={theme.COLORS.FACEBOOK}
@@ -325,7 +325,7 @@ class Elements extends React.Component {
325325
onlyIcon
326326
shadowless
327327
icon="twitter"
328-
iconFamily="FontAwesome"
328+
iconFamily="Font-Awesome"
329329
iconColor={theme.COLORS.WHITE}
330330
iconSize={theme.SIZES.BASE * 1.625}
331331
color={theme.COLORS.TWITTER}
@@ -338,7 +338,7 @@ class Elements extends React.Component {
338338
onlyIcon
339339
shadowless
340340
icon="dribbble"
341-
iconFamily="FontAwesome"
341+
iconFamily="Font-Awesome"
342342
iconColor={theme.COLORS.WHITE}
343343
iconSize={theme.SIZES.BASE * 1.625}
344344
color={theme.COLORS.DRIBBBLE}

screens/Register.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Register extends React.Component {
3333
<Block row>
3434
<Icon
3535
name="logo-github"
36-
family="Ionicons"
36+
family="Ionicon"
3737
size={14}
3838
color={"black"}
3939
style={{ marginTop: 2, marginRight: 5 }}
@@ -45,7 +45,7 @@ class Register extends React.Component {
4545
<Block row>
4646
<Icon
4747
name="logo-google"
48-
family="Ionicons"
48+
family="Ionicon"
4949
size={14}
5050
color={"black"}
5151
style={{ marginTop: 2, marginRight: 5 }}

0 commit comments

Comments
 (0)