How to use Tensorflow lite in Expo react native project?

So, I was trying to impose machine learning in my react native project which was set up through expo cli. I am using tflite-react-native which can be found here tflite-react-native - npm
How may I setup my project? I can’t fine metro.config.js . I want to set up my project, Can anyone help me?

did you see this? TensorFlow.js for React Native is here! — The TensorFlow Blog

Hi Arex360,

If you would use tflite-react-native you should eject your application to be able to use NativeModules which is actually impossible with Expo.

But depending on what you need, you can use TensorflowJS with Expo without the need to use lite model.

Tensor Flow is a free and open-source software library for machine learning. It can be used across a range of tasks but has a particular focus on training and inference of deep neural networks.

Any idea ?