首页 > 代码库 > 简单的切换页面(类似于微信)
简单的切换页面(类似于微信)
//在App.js中实现
import React from ‘react‘; import { StyleSheet, Text, View } from ‘react-native‘; import { StackNavigator, TabNavigator, TabBarBottom, } from ‘react-navigation‘; const MainView = TabNavigator({ MessageView:{screen:MessageView}, FriendView:{screen: FriendView}, MyView:{screen:MyView}, SetView:{screen:SetView}, },{ tabBarComponent:TabBarBottom, tabBarPosition:‘bottom‘, swipeEnabled:false, tabBarOptions:{ // showLabel:false, style:{ height:70, } } });
//在你需要切换的页面实现
import React, { Component } from ‘react‘; import { View, Text, StyleSheet, Button, Image, Dimensions, FlatList, } from ‘react-native‘; export default class FriendView extends Component { static navigationOptions={ title:‘朋友‘, headerLeft:null, headerTitleStyle:{ alignSelf:‘center‘, }, tabBarIcon:({ focused, tintColor})=>{ if(focused==true){ return( <Image style={{width:40,height:40}} source={require(‘../assets/images/icon2.png‘)} /> ) }else { return( <Image style={{width:35,height:35}} source={require(‘../assets/images/icon3.png‘)} /> ) } } }
简单的切换页面(类似于微信)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。