mg-library 1.0.409 → 1.0.410
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 +3 -0
- package/package.json +1 -1
package/blocks.js
CHANGED
@@ -506,6 +506,9 @@ export function MGFlatListHeader(props) {
|
|
506
506
|
<View style={{ flexGrow: 1 }}>
|
507
507
|
{props.sessionHeader}
|
508
508
|
{props.goBack}
|
509
|
+
{props.beforeTitle != undefined &&
|
510
|
+
props.beforeTitle
|
511
|
+
}
|
509
512
|
<View style={{ marginHorizontal: 10, marginBottom: 20, paddingHorizontal: 10, paddingVertical: 10, borderColor: props.theme['color-primary-500'], borderRadius: 10, borderStyle: 'solid', borderWidth: 1 }}>
|
510
513
|
<Text category='h6' style={{ marginLeft: 10 }}>{props.title}</Text>
|
511
514
|
</View>
|