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
I have a button that is incorrectly rendered, height is shrunk, text is disappearing.
Xcode Version 11.3 beta
"react-native": "0.59.10"
Correct behaviour on both platforms.
Button height is reduced on iOS
Render the following:
<View style={{flex: 1, backgroundColor: "#F5FCFF"}}> <Grid> <Row size={100}> <Col> <Button style={{backgroundColor: "#ddd", borderWidth: 1, margin: 40, padding: 12, borderRadius: 8, borderColor: "black"}} onPress={() => {}}> <Text style={{ textAlign: "center" }}>Start</Text> </Button> </Col> <Col> <View style={{ alignItems: "center" }}>{undefined}</View> </Col> </Row> <Row size={200}></Row> <Row size={50}></Row> <Row size={150}></Row> <Row size={150}></Row> </Grid> </View>
This issue is iOS only. Reduce the fixed size of the last row to make the button rendered properly.
Android is fine.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have gone through these following points
Issue Description
I have a button that is incorrectly rendered, height is shrunk, text is disappearing.
node, npm, package.json, xcode version
Xcode Version 11.3 beta
"react-native": "0.59.10"
Expected behaviour
Correct behaviour on both platforms.
Actual behaviour
Button height is reduced on iOS
Steps to reproduce
Render the following:
Is the bug present in both iOS and Android or in any one of them?
This issue is iOS only. Reduce the fixed size of the last row to make the button rendered properly.
Android is fine.
Any other additional info which would help us debug the issue quicker.
The text was updated successfully, but these errors were encountered: