static options(passProps) {
return {
topBar: {
title: {
text: "Title",
alignment: "center"
},
rightButtons: [{
id: 'btn_click',
text: "click",
}],
}
};
}
Even though I write right button text with small letter, it becomes all capital letters when run the app.
Is there any solution for it?
thanks
[FILL THIS OUT]
I'm having the same problem... Has someone found the solution?
@MEsteves22
react native navigation folder -> res -> values -> styles.xml
put
thanks
@NweThazin thank you, it works!
AWESOME!
To be more specific, navigate to:
android/app/src/main/styles.xml
Then just add: <item name="textAllCaps"> false </item>
Most helpful comment
@MEsteves22
react native navigation folder -> res -> values -> styles.xml- false < /item> in TopBar style tag
put
thanks