Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
palingheorghe committed Nov 6, 2019
1 parent c754607 commit 3c6635f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 25 deletions.
6 changes: 3 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"name": "Argon FREE React Native",
"slug": "argon-free-react-native",
"privacy": "public",
"sdkVersion": "34.0.0",
"sdkVersion": "35.0.0",
"platforms": [
"ios",
"android"
],
"version": "1.2.0",
"version": "1.3.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
Expand All @@ -26,4 +26,4 @@
"supportsTablet": true
}
}
}
}
19 changes: 5 additions & 14 deletions components/DrawerItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class DrawerItem extends React.Component {
name="shop"
family="ArgonExtra"
size={10}
color={focused ? "white" : argonTheme.COLORS.ICON}
color={focused ? "white" : argonTheme.COLORS.PRIMARY}
/>
);
case "Elements":
Expand All @@ -25,16 +25,7 @@ class DrawerItem extends React.Component {
name="map-big"
family="ArgonExtra"
size={12}
color={focused ? "white" : argonTheme.COLORS.ICON}
/>
);
case "Components":
return (
<Icon
name="map-big"
family="ArgonExtra"
size={12}
color={focused ? "white" : argonTheme.COLORS.ICON}
color={focused ? "white" : argonTheme.COLORS.ERROR}
/>
);
case "Articles":
Expand All @@ -43,7 +34,7 @@ class DrawerItem extends React.Component {
name="spaceship"
family="ArgonExtra"
size={12}
color={focused ? "white" : argonTheme.COLORS.ICON}
color={focused ? "white" : argonTheme.COLORS.PRIMARY}
/>
);
case "Profile":
Expand All @@ -52,7 +43,7 @@ class DrawerItem extends React.Component {
name="chart-pie-35"
family="ArgonExtra"
size={12}
color={focused ? "white" : argonTheme.COLORS.ICON}
color={focused ? "white" : argonTheme.COLORS.WARNING}
/>
);
case "Account":
Expand All @@ -61,7 +52,7 @@ class DrawerItem extends React.Component {
name="calendar-date"
family="ArgonExtra"
size={12}
color={focused ? "white" : argonTheme.COLORS.ICON}
color={focused ? "white" : argonTheme.COLORS.INFO}
/>
);
case "Getting Started":
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "argon-react-native",
"version": "1.2.0",
"version": "1.3.0",
"description": "Argon React Native, based on Argon Design System. Coded by Creative Tim",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
Expand All @@ -14,19 +14,19 @@
"url": "git+https://github.com/creativetimofficial/argon-react-native.git"
},
"dependencies": {
"expo": "^34.0.3",
"expo-asset": "^6.0.0",
"expo-font": "^6.0.1",
"galio-framework": "^0.6.1",
"expo": "^35.0.0",
"expo-asset": "~7.0.0",
"expo-font": "~7.0.0",
"galio-framework": "^0.6.3",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"react-native-gesture-handler": "^1.3.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-gesture-handler": "~1.3.0",
"react-native-modal-dropdown": "^0.6.2",
"react-navigation": "^3.11.0"
},
"devDependencies": {
"babel-preset-expo": "^5.0.0"
"babel-preset-expo": "^7.0.0"
},
"keywords": [
"argon react native",
Expand Down

0 comments on commit 3c6635f

Please sign in to comment.