diff --git a/src/scenes/Login/index.js b/src/scenes/Login/index.js
index 1a84463..9be02f1 100644
--- a/src/scenes/Login/index.js
+++ b/src/scenes/Login/index.js
@@ -6,6 +6,8 @@ import {
TextInput,
ActivityIndicator,
Image,
+ KeyboardAvoidingView,
+ Platform,
} from 'react-native';
import {
Container,
@@ -57,71 +59,76 @@ const Login = ({route, navigation}) => {
style={styles.translateButtonImage}
/>
-
-
-
- {t('welcome_text')}
-
- Through a wide range of caterers & brand partners, personalized
- services
-
-
-
-
-
-
- {t('phone_input')} *
-
-
-
- 🇮🇩 +62
-
-
- setPhone(val)}
- placeholder="Nomor HP"
- keyboardType="number-pad"
- autoFocus={true}
- />
- setPhone('')}>
-
-
-
-
- {error?.phone?.message && (
- {error.phone.message}
- )}
-
-
- {t('phone_issue')}
+
+
+
+
+ {t('welcome_text')}
+
+ Through a wide range of caterers & brand partners, personalized
+ services
-
+
-
-
+
({
- marginBottom: Platform.OS === 'ios' ? keyboardHeight : width * 0.05,
- }),
+ buttonSignInSection: {
+ // marginBottom: Platform.OS === 'ios' ? keyboardHeight : width * 0.05,
+ },
textOr: {
fontFamily: FONTS.poppins[500],
fontSize: RFValue(12),
diff --git a/src/scenes/Products/ProductList/AddProduct/index.js b/src/scenes/Products/ProductList/AddProduct/index.js
index cd67ab1..edd620f 100644
--- a/src/scenes/Products/ProductList/AddProduct/index.js
+++ b/src/scenes/Products/ProductList/AddProduct/index.js
@@ -1,5 +1,12 @@
import React, {useState} from 'react';
-import {View, ScrollView, Text, TouchableOpacity} from 'react-native';
+import {
+ View,
+ ScrollView,
+ Text,
+ TouchableOpacity,
+ KeyboardAvoidingView,
+ Platform,
+} from 'react-native';
import {Container, Header, Button, Icon, Input} from 'components';
import {Colors} from 'global-styles';
import {useTranslation} from 'react-i18next';
@@ -19,52 +26,57 @@ const AddProduct = ({route, navigation}) => {
/>
-
-
-
- {t('menu_photo_text')}
- *
-
- {t('menu_photo_note')}
-
-
-
-
-
- {t('upload_image_text')}
+
+
+
+
+ {t('menu_photo_text')}
+ *
-
-
-
-
-
-
-
-
- setPrice(val)}
- label={t('price_text')}
- placeholder="0"
- />
+ {t('menu_photo_note')}
+
+
+
+
+
+ {t('upload_image_text')}
+
+
+
+
+
+
+
+
+
+ setPrice(val)}
+ label={t('price_text')}
+ placeholder="0"
+ />
+
navigation.goBack()} />
diff --git a/src/scenes/Register/BusinessProfileRegistration/BusinessSummary/index.js b/src/scenes/Register/BusinessProfileRegistration/BusinessSummary/index.js
index 182b589..afb18e2 100644
--- a/src/scenes/Register/BusinessProfileRegistration/BusinessSummary/index.js
+++ b/src/scenes/Register/BusinessProfileRegistration/BusinessSummary/index.js
@@ -1,5 +1,5 @@
import React, {useState} from 'react';
-import {View, ScrollView, TextInput} from 'react-native';
+import {View, ScrollView, KeyboardAvoidingView, Platform} from 'react-native';
import {Container, Header, Note, Button, Input} from 'components';
import {Colors} from 'global-styles';
import {useTranslation} from 'react-i18next';