From cf650dd0dc082cee3d154bd4ac19f14838fad7c9 Mon Sep 17 00:00:00 2001 From: Alin Gheorghe Date: Thu, 4 Jun 2020 19:59:44 -0400 Subject: [PATCH] fixed more issues regarding font --- App.js | 1 - assets/{font => config}/argon.json | 0 components/Icon.js | 2 +- 3 files changed, 1 insertion(+), 2 deletions(-) rename assets/{font => config}/argon.json (100%) diff --git a/App.js b/App.js index 8e4c4aa..d932b6d 100644 --- a/App.js +++ b/App.js @@ -44,7 +44,6 @@ export default props => { }); function _loadResourcesAsync() { - console.log('bro'); return Promise.all([...cacheImages(assetImages)]); } diff --git a/assets/font/argon.json b/assets/config/argon.json similarity index 100% rename from assets/font/argon.json rename to assets/config/argon.json diff --git a/components/Icon.js b/components/Icon.js index eb3e922..075515c 100644 --- a/components/Icon.js +++ b/components/Icon.js @@ -3,7 +3,7 @@ import * as Font from 'expo-font'; import { createIconSetFromIcoMoon } from '@expo/vector-icons'; import { Icon } from 'galio-framework'; -import argonConfig from '../assets/font/argon.json'; +import argonConfig from '../assets/config/argon.json'; const ArgonExtra = require('../assets/font/argon.ttf'); const IconArgonExtra = createIconSetFromIcoMoon(argonConfig, 'ArgonExtra');