Styling Changed

Hi folks,
I developed my screen using expo, and it was working fine in expo projects.
But when I generated the APK using expo, the syling of a component was changed.
Can anyone help?
Here’s my code.

{this.state.show ? ( ) : null} {" "} {this.state.stop ? "Pause" : "Resume"}{" "} navigate("Timer")}> Back

const styles = StyleSheet.create({
container: {
backgroundColor: “black”,
position: “absolute”,
top: 0,
left: 0,
right: 0,
bottom: 0,
justifyContent: “center”,
alignItems: “center”
},
scrollContainer: {
backgroundColor: “black”,
position: “absolute”,
top: 0,
left: 0,
right: 0,
bottom: 0,
justifyContent: “center”,
alignItems: “center”,
height: “125%”
},
landscapeImages: {
height: “85%”,
width: “90%”,
alignSelf: “center”,
position: “absolute”,
top: 0
},
countDownStyle: { position: “relative”, alignSelf: “center” },
buttons: {
// flex: 1,
position: “relative”,
flexDirection: “row”,
top: 20
},
landscapebuttons: {
position: “absolute”,
bottom: 0,
justifyContent: “center”,
flexDirection: “row”
},
landscapecontainer: {
alignItems: “center”,
justifyContent: “center”,
height: “100%”,
flex: 1,
backgroundColor: “black”
},
imagestyles: {
minWidth: “70%”,
maxWidth: “95%”,
minHeight: “10%”,
maxHeight: “40%”,
alignContent: “center”,
alignSelf: “center”,
alignItems: “center”
},
buttonstylenew: {
alignItems: “center”,
justifyContent: “center”,
marginRight: 10,
marginLeft: 10,
borderWidth: 2,
height: 50,
width: 140,
borderRadius: 10,
paddingRight: 20,
paddingLeft: 20,
borderColor: “#FFFFFF”,
backgroundColor: “#FFFFFF
},
Landscapebuttonstyle: {
alignItems: “center”,
alignSelf: “center”,
justifyContent: “center”,
borderWidth: 2,
marginTop: 5,
height: 50,
marginRight: 10,
marginLeft: 10,
width: “33%”,
borderRadius: 10,
paddingRight: 20,
paddingLeft: 20,
borderColor: “#FFFFFF”,
backgroundColor: “#FFFFFF
},
buttonstyle: {
position: “relative”,
top: 20
},
textstyle: {
alignSelf: “center”,
color: “black”,
fontSize: 25,
fontWeight: “600”
},
textstyle2: {
alignSelf: “center”,
textAlign: “center”,
color: “black”,
fontSize: 20,
fontWeight: “600”,
position: “relative”
}
});

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.