ordering-ui-react-native 0.23.18 → 0.23.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -155,7 +155,7 @@ export const usePrinterCommands = () => {
|
|
|
155
155
|
const jumpLine = isAppendMode ? '\n' : ' '
|
|
156
156
|
const endLine = isAppendMode ? '\n' : ''
|
|
157
157
|
|
|
158
|
-
const textProps = { fontSize: 22 }
|
|
158
|
+
const textProps = { fontSize: Platform.OS === 'ios' ? 12 : 22 }
|
|
159
159
|
|
|
160
160
|
const appends: any = [
|
|
161
161
|
{ text: `${t('ORDER_NO', 'Order No.')} ${order.id}${endLine}`, props: { fontSize: Platform.OS === 'ios' ? 16 : 24 } },
|