mg-library 1.0.630 → 1.0.632
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 +0 -21
- package/package.json +1 -1
package/blocks.js
CHANGED
|
@@ -657,27 +657,6 @@ export function MGPressable({ children, style, activeOpacity, ...otherProps }) {
|
|
|
657
657
|
);
|
|
658
658
|
}
|
|
659
659
|
|
|
660
|
-
/* export function MGFlatListHeader(props) {
|
|
661
|
-
return (
|
|
662
|
-
<View style={{ flex: 1 }}>
|
|
663
|
-
{props.sessionHeader}
|
|
664
|
-
{props.goBack}
|
|
665
|
-
{props.beforeTitle != undefined &&
|
|
666
|
-
props.beforeTitle
|
|
667
|
-
}
|
|
668
|
-
<View style={{ marginHorizontal: 10, marginBottom: 20, paddingHorizontal: 10, paddingVertical: 10, borderColor: props.colors.primary['500'], borderRadius: 10, borderStyle: 'solid', borderWidth: 1 }}>
|
|
669
|
-
<MGText category='h6' style={{ marginLeft: 10 }}>{props.title}</MGText>
|
|
670
|
-
{props.subTitle != undefined &&
|
|
671
|
-
props.subTitle
|
|
672
|
-
}
|
|
673
|
-
</View>
|
|
674
|
-
{props.afterTitle != undefined &&
|
|
675
|
-
props.afterTitle
|
|
676
|
-
}
|
|
677
|
-
</View>
|
|
678
|
-
)
|
|
679
|
-
} */
|
|
680
|
-
|
|
681
660
|
export function MGFlatListHeader(props) {
|
|
682
661
|
return (
|
|
683
662
|
<View style={[{ flex: 1 }, props.containerStyle]}>
|