mg-library 1.0.481 → 1.0.483
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 +1 -1
- package/functions.js +10 -0
- package/mg-library.rar +0 -0
- package/package.json +1 -1
package/blocks.js
CHANGED
@@ -235,7 +235,7 @@ export function MGCurrentAccount(props) {
|
|
235
235
|
return (
|
236
236
|
<>
|
237
237
|
<View style={{ flexDirection: 'column', alignItems: 'flex-end', marginTop: 10, marginBottom: 10, marginLeft: 10, marginRight: 20 }}>
|
238
|
-
<Text category='
|
238
|
+
<Text category='h5'>{item.balance._asCurrency(company.currencySymbol)}</Text>
|
239
239
|
</View>
|
240
240
|
</>
|
241
241
|
);
|
package/functions.js
CHANGED
@@ -154,6 +154,16 @@ export function safeAreaViewStyleSheet(insets) {
|
|
154
154
|
});
|
155
155
|
}
|
156
156
|
|
157
|
+
export function safeAreaViewForNavigatorHeaderStyleSheet(insets) {
|
158
|
+
return StyleSheet.create({
|
159
|
+
safeAreaView: {
|
160
|
+
paddingTop: insets.top,
|
161
|
+
paddingLeft: insets.left,
|
162
|
+
paddingRight: insets.right
|
163
|
+
}
|
164
|
+
});
|
165
|
+
}
|
166
|
+
|
157
167
|
export function getBasicStyleSheet() {
|
158
168
|
return StyleSheet.create({
|
159
169
|
availableArea: {
|
package/mg-library.rar
CHANGED
Binary file
|