mg-library 1.0.478 → 1.0.480
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 -6
- package/package.json +1 -1
package/blocks.js
CHANGED
@@ -144,18 +144,16 @@ export function MGLogin(props) {
|
|
144
144
|
|
145
145
|
return (
|
146
146
|
<View style={{ flex: 1 }}>
|
147
|
-
<Layout style={[mgFunctionsLib.safeAreaViewStyleSheet(insets).safeAreaView, { display: 'flex', flexDirection: 'column', flexGrow:
|
147
|
+
<Layout style={[mgFunctionsLib.safeAreaViewStyleSheet(insets).safeAreaView, { display: 'flex', flexDirection: 'column', flexGrow: 0.9, backgroundColor: 'green' }]}>
|
148
148
|
<View style={{ flexDirection: 'column', flexGrow: 1, justifyContent: 'center' }}>
|
149
149
|
<View style={{ flexDirection: 'column', alignItems: 'center', marginBottom: 100 }}>
|
150
150
|
<Image
|
151
151
|
source={require('./assets/clubonline.png')}
|
152
152
|
style={{ width: 300, height: 150 }} />
|
153
153
|
{!isKeyboardVisible &&
|
154
|
-
<View>
|
155
|
-
<
|
156
|
-
|
157
|
-
<Text style={{ alignSelf: 'center' }} category='p2'>{props.appVersion}</Text>
|
158
|
-
</View>
|
154
|
+
<View style={{ flexDirection: 'column', alignItems: 'center' }}>
|
155
|
+
<Text style={{ alignSelf: 'center', textAlign: 'center' }} category='h6'>{props.appDescription}</Text>
|
156
|
+
<Text style={{ alignSelf: 'center' }} category='p2'>{props.appVersion}</Text>
|
159
157
|
</View>
|
160
158
|
}
|
161
159
|
</View>
|