We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There isn't much documentation on how to style the View, Button, or Text. I'm therefore having to write my own button as such:
<TouchableOpacity style={styles.buttonBg} onPress={this.onPress}> <Text style={styles.buttonText}> LOG IN </Text> </TouchableOpacity>
The text was updated successfully, but these errors were encountered:
If you set the style like this:
buttonContainer: { backgroundColor: '#66BB6A', color: 'white', padding: 10, margin: 5, },
backgroundColor specify background color of button, color specify text color inside of the button.
backgroundColor
color
You should set like this: <Button style={styles.buttonContainer} ... />
<Button style={styles.buttonContainer} ... />
Sorry, something went wrong.
No branches or pull requests
There isn't much documentation on how to style the View, Button, or Text. I'm therefore having to write my own button as such:
The text was updated successfully, but these errors were encountered: