From 99e880c1f66bf11369871b9f80250892ac83890d Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Fri, 5 Aug 2022 17:37:49 -0500 Subject: [PATCH] ios vector icon fix --- squarenotsquare/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/squarenotsquare/index.js b/squarenotsquare/index.js index 07b87ea..0b2853c 100644 --- a/squarenotsquare/index.js +++ b/squarenotsquare/index.js @@ -4,7 +4,10 @@ import {name as appName} from './app.json'; import SquareNotSquare from './SquareNotSquare'; import ConfigStore from './src/redux/CreateStore'; import { appInit } from './src/redux/actions/SystemActions'; +import MaterialIcon from 'react-native-vector-icons/MaterialCommunityIcons'; +//fix vector icons bug +MaterialIcon.loadFont(); const squareStore = ConfigStore; squareStore.dispatch(appInit());