Skip to content

Commit 3c6635f

Browse files
committed
v1.3.0
1 parent c754607 commit 3c6635f

File tree

3 files changed

+16
-25
lines changed

3 files changed

+16
-25
lines changed

app.json

Lines changed: 3 additions & 3 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": "34.0.0",
6+
"sdkVersion": "35.0.0",
77
"platforms": [
88
"ios",
99
"android"
1010
],
11-
"version": "1.2.0",
11+
"version": "1.3.0",
1212
"orientation": "portrait",
1313
"icon": "./assets/icon.png",
1414
"splash": {
@@ -26,4 +26,4 @@
2626
"supportsTablet": true
2727
}
2828
}
29-
}
29+
}

components/DrawerItem.js

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class DrawerItem extends React.Component {
1616
name="shop"
1717
family="ArgonExtra"
1818
size={10}
19-
color={focused ? "white" : argonTheme.COLORS.ICON}
19+
color={focused ? "white" : argonTheme.COLORS.PRIMARY}
2020
/>
2121
);
2222
case "Elements":
@@ -25,16 +25,7 @@ class DrawerItem extends React.Component {
2525
name="map-big"
2626
family="ArgonExtra"
2727
size={12}
28-
color={focused ? "white" : argonTheme.COLORS.ICON}
29-
/>
30-
);
31-
case "Components":
32-
return (
33-
<Icon
34-
name="map-big"
35-
family="ArgonExtra"
36-
size={12}
37-
color={focused ? "white" : argonTheme.COLORS.ICON}
28+
color={focused ? "white" : argonTheme.COLORS.ERROR}
3829
/>
3930
);
4031
case "Articles":
@@ -43,7 +34,7 @@ class DrawerItem extends React.Component {
4334
name="spaceship"
4435
family="ArgonExtra"
4536
size={12}
46-
color={focused ? "white" : argonTheme.COLORS.ICON}
37+
color={focused ? "white" : argonTheme.COLORS.PRIMARY}
4738
/>
4839
);
4940
case "Profile":
@@ -52,7 +43,7 @@ class DrawerItem extends React.Component {
5243
name="chart-pie-35"
5344
family="ArgonExtra"
5445
size={12}
55-
color={focused ? "white" : argonTheme.COLORS.ICON}
46+
color={focused ? "white" : argonTheme.COLORS.WARNING}
5647
/>
5748
);
5849
case "Account":
@@ -61,7 +52,7 @@ class DrawerItem extends React.Component {
6152
name="calendar-date"
6253
family="ArgonExtra"
6354
size={12}
64-
color={focused ? "white" : argonTheme.COLORS.ICON}
55+
color={focused ? "white" : argonTheme.COLORS.INFO}
6556
/>
6657
);
6758
case "Getting Started":

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "argon-react-native",
3-
"version": "1.2.0",
3+
"version": "1.3.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,19 +14,19 @@
1414
"url": "git+https://github.com/creativetimofficial/argon-react-native.git"
1515
},
1616
"dependencies": {
17-
"expo": "^34.0.3",
18-
"expo-asset": "^6.0.0",
19-
"expo-font": "^6.0.1",
20-
"galio-framework": "^0.6.1",
17+
"expo": "^35.0.0",
18+
"expo-asset": "~7.0.0",
19+
"expo-font": "~7.0.0",
20+
"galio-framework": "^0.6.3",
2121
"prop-types": "^15.7.2",
2222
"react": "16.8.3",
23-
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
24-
"react-native-gesture-handler": "^1.3.0",
23+
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
24+
"react-native-gesture-handler": "~1.3.0",
2525
"react-native-modal-dropdown": "^0.6.2",
2626
"react-navigation": "^3.11.0"
2727
},
2828
"devDependencies": {
29-
"babel-preset-expo": "^5.0.0"
29+
"babel-preset-expo": "^7.0.0"
3030
},
3131
"keywords": [
3232
"argon react native",

0 commit comments

Comments
 (0)