App.js
import React from 'react';
import ChatBot from 'react-native-chatbot';
import { ARTShape } from '@react-native-community/art';
const steps = [
{
id: '0',
message: 'Welcome to react chatbot!',
trigger: '1',
},
{
id: '1',
message: 'Bye!',
end: true,
},
];
const App = () => {
return (
<ChatBot steps={steps} />
);
}
export default App;
I actually don't know why it said artshape, while i don't use it in my code. then i tried to install the artshape npm install @react-native-community/art --save --force but still the issues persist.
Screenshots

ps: Im using "react-native": "0.71.7", and Expo Go on my android device