corymsmith / react-native-icons

Quick and easy icons in React Native
MIT License
1.14k stars 141 forks source link

ToolbarAndroid #157

Closed shukerullah closed 8 years ago

shukerullah commented 8 years ago

Is there any way to use this with ToolbarAndroid?

var toolbarActions = [
  {title: 'Message', icon: require('image!ic_message_white'), show: 'always'},
  {title: 'Search', icon: 'ion|ios-search', show: 'always'},
  {title: 'Settings', show: 'never'},
];

Icons are working from drawable but not with plugin. screenshot_2016-01-21-20-14-26

corymsmith commented 8 years ago

A better option would be http://github.com/oblador/react-native-vector-icons as he's implemented this

shukerullah commented 8 years ago

@corymsmith thanks