//需要加载的底部导航图片依赖包 import Ionicons from "react-native-vector-icons/Ionicons";
yarn add react-native-vector-icons
react-native link
//
import { createBottomTabNavigator } from "react-navigation";
import News from "./scr/News";
import My from "./scr/My";
const App = createBottomTabNavigator({
新闻: {
screen: News
},
我的: {
screen: My
}
});
export default App;
网友评论