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

@@ -44,10 +44,10 @@ const height = 6;
const styles = StyleSheet.create({
container: {
display: "flex",
marginHorizontal: responsiveWidth(5),
flexDirection: "row-reverse",
height: responsiveHeight(height),
alignItems: "flex-end"
alignItems: "flex-end",
backgroundColor: "white"
},
scanImage: {
height: responsiveHeight(5),
@@ -58,7 +58,8 @@ const styles = StyleSheet.create({
borderRadius: 0,
borderTopRightRadius: responsiveWidth(1),
borderBottomRightRadius: responsiveWidth(1),
width: responsiveWidth(25)
width: responsiveWidth(25),
flex: 1
},
scanImageWrapper: {
paddingHorizontal: responsiveWidth(1),
@@ -77,7 +78,7 @@ const styles = StyleSheet.create({
borderBottomLeftRadius: responsiveWidth(1),
paddingLeft: responsiveHeight(2),
fontSize: RFPercentage(2),
fontFamily: 'SF Pro Text'
// fontFamily: 'SF Pro Text'
}
})