//需要加載的底部導(dǎo)航圖片依賴包?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;