mg-library 1.0.622 → 1.0.624
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/blocks.js +4 -4
- package/package.json +1 -1
package/blocks.js
CHANGED
|
@@ -325,12 +325,12 @@ export function MGCurrentAccount(props) {
|
|
|
325
325
|
);
|
|
326
326
|
};
|
|
327
327
|
let listHeaderComponent = () => (
|
|
328
|
-
<View
|
|
328
|
+
<View>
|
|
329
329
|
{props.listHeaderComponent}
|
|
330
330
|
{props.goBack != undefined &&
|
|
331
331
|
props.goBack
|
|
332
332
|
}
|
|
333
|
-
<MGCard style={{ marginHorizontal: 30, marginBottom: 10 }}>
|
|
333
|
+
<MGCard style={{ marginHorizontal: 30, marginTop: 10, marginBottom: 10 }}>
|
|
334
334
|
<View style={{ alignItems: 'center' }}>
|
|
335
335
|
<MGText category='p1'>{mgFunctionsLib.i18nString('balance', props.language)}</MGText>
|
|
336
336
|
<MGText category='h3'>{props.balanceComposition.total._asCurrency(props.company.currencySymbol)}</MGText>
|
|
@@ -452,7 +452,7 @@ export function MGCamera(props) {
|
|
|
452
452
|
</View>
|
|
453
453
|
);
|
|
454
454
|
return (
|
|
455
|
-
<View>
|
|
455
|
+
<View style={{marginTop: 10}}>
|
|
456
456
|
<MGCard header={cardHeader} footer={cardFooter}>
|
|
457
457
|
<View style={{ alignItems: 'center' }}>
|
|
458
458
|
<CameraView
|
|
@@ -530,7 +530,7 @@ export function MGCameraPreview(props) {
|
|
|
530
530
|
</View>
|
|
531
531
|
);
|
|
532
532
|
return (
|
|
533
|
-
<View>
|
|
533
|
+
<View style={{marginTop: 10}}>
|
|
534
534
|
<MGCard header={cardHeader} footer={cardFooter}>
|
|
535
535
|
<View style={{ alignItems: 'center' }}>
|
|
536
536
|
<Image source={{ uri: props.process.fileUri }} style={{ width: 200, height: 200 }} />
|