2017-05-29 53 views

回答

1

你可以像這樣使用它。

import {ToolbarAndroid} from 'react-native'; 
    import Icon from 'react-native-vector-icons/MaterialIcons'; 

    ... 

    action() { 
     //code 
    } 

    ... 

    <ToolbarAndroid> 
     <Icon name="nameOfIcon" size={26} color="black" style={{margin: 10}} onPress={this.action.bind(this)}/> 
    </ToolbarAndroid> 

您可以根據您的要求使用尺寸,顏色,名稱或樣式。

相關問題