|
|
|
@ -13,6 +13,7 @@ import BackIcon from "../../components/BackIcon";
|
|
|
|
|
import MassageIcon from "../../components/MassageIcon"; |
|
|
|
|
import { useEffect, useState, useRef } from "react"; |
|
|
|
|
import fontSize from "../../utils/fontsizeUtils"; |
|
|
|
|
import widthUtils from "../../utils/widthUtils"; |
|
|
|
|
import { |
|
|
|
|
ordersApi, |
|
|
|
|
PaginatedOrderResponse, |
|
|
|
@ -300,7 +301,7 @@ const styles = StyleSheet.create({
|
|
|
|
|
alignItems: "center", |
|
|
|
|
}, |
|
|
|
|
statusTitle: { |
|
|
|
|
fontSize: 16, |
|
|
|
|
fontSize: fontSize(16), |
|
|
|
|
fontWeight: "600", |
|
|
|
|
}, |
|
|
|
|
statusList: { |
|
|
|
@ -312,7 +313,7 @@ const styles = StyleSheet.create({
|
|
|
|
|
width: "100%", |
|
|
|
|
}, |
|
|
|
|
statusItem: { |
|
|
|
|
width: 100, |
|
|
|
|
width: widthUtils(100,100).width, |
|
|
|
|
padding: 16, |
|
|
|
|
backgroundColor: "white", |
|
|
|
|
}, |
|
|
|
@ -369,8 +370,8 @@ const styles = StyleSheet.create({
|
|
|
|
|
borderColor: "#f5f5f5", |
|
|
|
|
}, |
|
|
|
|
orderProductItemImage: { |
|
|
|
|
width: 30, |
|
|
|
|
height: 30, |
|
|
|
|
width: widthUtils(30,30).width, |
|
|
|
|
height: widthUtils(30,30).height, |
|
|
|
|
marginRight: 10, |
|
|
|
|
}, |
|
|
|
|
orderProductItemInfo: { |
|
|
|
|