Answers for "button size react native"

0

button size react native

/*
I recommend you to use the TouchableOpacity component to build your own button,
with own properties and styles.
You can easily style it like this:*/
<TouchableOpacity style={{ height: 100, marginTop: 10 }}>
    <Text>My button</Text>
</TouchableOpacity>
Posted by: Guest on July-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language