invertase / react-native-material-design

React Native UI Components for Material Design
http://react-native-material-design.github.io
MIT License
3.15k stars 365 forks source link

is there some solutions for a text colse to right icon in toolbar #104

Open lakeoffaith opened 8 years ago

lakeoffaith commented 8 years ago

i want show a text close to right icon in toolbar,is there exist solution for this?any advice will be appreciated

xotahal commented 8 years ago

I had almost same problem. So I worked on react-native-material-ui that was forked from this library. In that library you can use Toolbar component like this:

<Toolbar
   leftElement="arrow-back"
   centerElement="Title"
   rightElement={<Text>You can put here whatever you want</Text>}
/>

Of course, you can pass whatever you want to leftElement, centerElement and rightElement

lakeoffaith commented 8 years ago

@xotahal thank you