This commit is contained in:
2023-10-15 06:37:46 +03:00
parent 67258c8114
commit 4f25112b5e
70 changed files with 482 additions and 64 deletions

View File

@@ -65,42 +65,44 @@ function OrderScreen() {
const styles = StyleSheet.create({
container: {
padding: 30,
width: "100%",
height: "100%",
overflow: "hidden",
display: "flex",
flex: 1,
paddingHorizontal: responsiveWidth(5)
},
dataContainer: {
backgroundColor: "black",
// backgroundColor: "black",
display: "flex",
flexDirection: "row",
columnGap: responsiveWidth(3)
},
buttonsContainer: {
backgroundColor: "blue",
// backgroundColor: "blue",
flex: 1,
display: "flex",
justifyContent: "center",
paddingHorizontal: responsiveWidth(10)
},
buttonsWrapper: {
backgroundColor: "red",
// backgroundColor: "red",
rowGap: responsiveHeight(3)
},
imageWrapper: {
width: responsiveWidth(40),
height: responsiveHeight(40),
// height: responsiveHeight(40),
backgroundColor: "red",
padding: RFPercentage(1)
// backgroundColor: "red",
},
image: {
flex: 1,
borderRadius: RFPercentage(3)
},
contentContainer: {
padding: RFPercentage(1),
backgroundColor: "pink",
padding: RFPercentage(2),
backgroundColor: "white",
borderRadius: RFPercentage(3),
flex: 1
},