akveo / react-native-ui-kitten

:boom: React Native UI Library based on Eva Design System :new_moon_with_face::sparkles:Dark Mode
https://akveo.github.io/react-native-ui-kitten/
MIT License
10.21k stars 951 forks source link

Icon not showing ( expo 39.0.2 ) #1300

Closed Kliton closed 3 years ago

Kliton commented 3 years ago

🐛 Bug Report

Icon are not showing both on expo web ( using react native web ) or on device test ( with expo )

To Reproduce

Create clean project with expo / typescript blank.

UI Kitten and Eva version

Package Version
@eva-design/eva ^5.0.0
@ui-kitten/components ^5.0.0
expo ~39.0.2
react-native-svg 12.0.1

I have also linked with IconRegister

import React from 'react';
import { ApplicationProvider, Layout, Text , IconRegistry} from '@ui-kitten/components';
import * as eva from '@eva-design/eva';
import AppNavigator from './navigation.js'
import { EvaIconsPack } from '@ui-kitten/eva-icons';

export default () => (
  <>
    <IconRegistry icons={EvaIconsPack} />
    <ApplicationProvider {...eva} theme={eva.dark}>
      <AppNavigator />
    </ApplicationProvider>
  </>
);
Kliton commented 3 years ago

Closed because the error was on my code