Top button in native base
I have a button with a facebook icon
<Button iconLeft block > <Icon name='logo-facebook' /> <Text>Login with facebook</Text> </Button>
with the text "Login with facebook", but it displays "LOGIN WITH FACEBOOK". I've tried with capize = {false}, but I don't hope. Is there any way? NB version: 2.2.1
+1
source to share
3 answers
are you using Native Base
Right? maybe you can try this.
you can change this code:
<Button iconLeft block >
<Icon name='logo-facebook' />
<Text> {'Login with facebook'.toUpperCase()} </Text>
</Button>
:
<Button iconLeft block >
<Icon name='logo-facebook' />
<Text uppercase={false}> {'Login with facebook'.toUpperCase()} </Text>
</Button>
just using uppercase={false}
in tag <text>
, hope it can help you :)
+1
source to share
Try the following:
text.capitalize-lowercase {text-transform: lowercase;}
text.capitalize-uppercase {text-transform: uppercase;}
<button iconleft block> <icon name='logo-facebook' /> <text class="capitalize-uppercase">Login with facebook</text> </button>
<br/> <br/>
<button iconleft block> <icon name='logo-facebook' /> <text class="capitalize-lowercase">Login with facebook</text> </button>
0
source to share