mg-library 1.0.530 → 1.0.531
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 +7 -0
- package/package.json +1 -1
package/blocks.js
CHANGED
@@ -211,6 +211,13 @@ export function MGLogin(props) {
|
|
211
211
|
<Layout style={[mgFunctionsLib.safeAreaViewStyleSheet(insets).safeAreaView, { display: 'flex', flexDirection: 'column', flexGrow: 1 }]}>
|
212
212
|
<View style={{ flexDirection: 'column', flexGrow: 1, justifyContent: 'center' }}>
|
213
213
|
<View style={{ flexDirection: 'column', alignItems: 'center', marginBottom: 100 }}>
|
214
|
+
{isKeyboardVisible &&
|
215
|
+
<>
|
216
|
+
<Image
|
217
|
+
source={require('./assets/clubonline.png')}
|
218
|
+
style={{ width: 150, height: 75 }} />
|
219
|
+
</>
|
220
|
+
}
|
214
221
|
{!isKeyboardVisible &&
|
215
222
|
<>
|
216
223
|
<Image
|