Теперь я пытаюсь создать приложение с реагировать на нативный, Mobx и Expo.
Однако после того, как я установил Mobx и сделал Store с наблюдаемым из Mobx, я получил ошибку, как показано ниже.
В дополнение к упомянутой мной информации я использую некоторые декораторы, такие как @observer и @inject, Provider.
Добавьте мой кодкомпонента с провайдером.
import React from "react";
import { View, StyleSheet } from "react-native";
import { Provider } from "mobx-react/native";
import HomeHeader from "../Elements/Home/HomeHeader";
import HomeShopList from "../Elements/Home/HomeShopList";
import HomeAllCouponListButton from "../Elements/Home/HomeAllCouponListButton";
import HomeAllShopListButton from "../Elements/Home/HomeAllShopListButton";
import RestaurantStore from "../Stores/EachStores/RestaurantStore";
class Home extends React.Component {
render() {
const { navigation } = this.props;
return (
<View style={styles.container}>
<HomeHeader />
<Provider restaurantStore={RestaurantStore}>
<HomeShopList navigation={navigation} />
</Provider>
<HomeAllCouponListButton />
<HomeAllShopListButton />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1
}
});