码迷,mamicode.com
首页 > 移动开发 > 详细

TabBarIOS中icon的本地加载方式

时间:2018-03-05 16:02:31      阅读:592      评论:0      收藏:0      [点我收藏+]

标签:his   flex   text   set   post   one   blog   hub   ack   

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

import React, { Component } from ‘react‘;
import {
  Platform,
  StyleSheet,
  Text,
  View,
  TabBarIOS,
  StatusBar,
} from ‘react-native‘;

type Props = {};
export default class App extends Component<Props> {
  constructor(props){
    super(props);
    this.state={
      selectedTab:"图书"
    }
  }
  render() {
    return (
      <TabBarIOS>
        <TabBarIOS.Item
          title="图书"
          //每次添加新图片都要重新run一下Xcode
          //下面一行是ES5的写法在ES6中无法使用
          // icon={require("image!book_16")}
          //ES6中的写法为:icon={{uri:‘imageName‘}}
          icon={{uri:‘book_16‘}}
          selected={this.state.selectedTab==="图书"}
          onPress={()=>{
            this.setState({
              selectedTab:"图书"
            })
          }}>
          <View style={{backgroundColor:‘green‘,flex:1}}></View>
        </TabBarIOS.Item>
        <TabBarIOS.Item
          title="电影"
          icon={{uri:‘movie_16‘}}
          selected={this.state.selectedTab==="电影"}
          onPress={()=>{
            this.setState({
              selectedTab:"电影"
            })
          }}>
          <View style={{backgroundColor:‘skyblue‘,flex:1}}></View>
        </TabBarIOS.Item>
      </TabBarIOS>
    );
  }
}

  

TabBarIOS中icon的本地加载方式

标签:his   flex   text   set   post   one   blog   hub   ack   

原文地址:https://www.cnblogs.com/Jayeblog/p/8509384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!