1

I noticed that when The ApplicationProvider tag is present, my react native app start up time increases to more than 5 seconds. I've already followed the guide from UI-Kitten team by improving the performance through configuring the metro.config.js file but doesn't seem to help.

<ApplicationProvider {...eva} theme={{...eva.light, ...theme}}>
       <Text>{'Test'}</Text>
</ApplicationProvider>

Anyone can help?

user1885498
  • 823
  • 1
  • 8
  • 19

1 Answers1

0

To be 100% sure the startup time is caused by KittenUI can your try to run

npx react-native-bundle-visualizer --expo managed

You will have an output with a nice image to help you identify your bundle size

David Leuliette
  • 1,595
  • 18
  • 26