react-native-material-design
react-native-material-design copied to clipboard
is there some solutions for a text colse to right icon in toolbar
i want show a text close to right icon in toolbar,is there exist solution for this?any advice will be appreciated
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 thank you