react-native-material-design icon indicating copy to clipboard operation
react-native-material-design copied to clipboard

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

Open lakeoffaith opened this issue 8 years ago • 2 comments

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

lakeoffaith avatar Aug 08 '16 05:08 lakeoffaith

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

xotahal avatar Sep 14 '16 21:09 xotahal

@xotahal thank you

lakeoffaith avatar Sep 17 '16 00:09 lakeoffaith