react-native-woomobileuser
Advanced tools
Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "react-native-woomobileuser", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
import React, { Component } from 'react'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView } from 'react-native'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView, Platform } from 'react-native'; | ||
import i18n from '../locales'; | ||
@@ -81,3 +81,3 @@ import { Input, Button } from 'react-native-elements'; | ||
render() { | ||
return <KeyboardAvoidingView behavior="padding" style={{ flex: 1 }}> | ||
return <KeyboardAvoidingView behavior={Platform.OS == "ios" ? "padding" : "height"} style={{ flex: 1 }}> | ||
<ScrollView style={{ backgroundColor: '#FFFFFF', flex: 1 }}> | ||
@@ -84,0 +84,0 @@ <View style={{ padding: 30, paddingVertical: 10 }}> |
import React, { Component } from 'react'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView } from 'react-native'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView, Platform } from 'react-native'; | ||
import i18n from '../locales'; | ||
@@ -95,3 +95,3 @@ import { Input, Button } from 'react-native-elements'; | ||
render() { | ||
return <KeyboardAvoidingView behavior="padding" style={{ flex: 1 }}> | ||
return <KeyboardAvoidingView behavior={Platform.OS == "ios" ? "padding" : "height"} style={{ flex: 1 }}> | ||
<ScrollView style={{ backgroundColor: '#FFFFFF', flex: 1 }}> | ||
@@ -98,0 +98,0 @@ <View style={{ padding: 30, paddingVertical: 10 }}> |
import React, { Component } from 'react'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView } from 'react-native'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView, Platform } from 'react-native'; | ||
import i18n from '../locales'; | ||
@@ -75,3 +75,3 @@ import { Input, Button } from 'react-native-elements'; | ||
render() { | ||
return <KeyboardAvoidingView behavior="padding" style={{ flex: 1 }}> | ||
return <KeyboardAvoidingView behavior={Platform.OS == "ios" ? "padding" : "height"} style={{ flex: 1 }}> | ||
<ScrollView style={{ backgroundColor: '#FFFFFF', flex: 1 }}> | ||
@@ -78,0 +78,0 @@ <View style={{ padding: 30, paddingVertical: 10 }}> |
import React, { Component } from 'react'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView } from 'react-native'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView, Platform } from 'react-native'; | ||
import i18n from '../locales'; | ||
@@ -107,3 +107,3 @@ import * as langStore from '../store/language'; | ||
render() { | ||
return <KeyboardAvoidingView behavior="padding" style={{ flex: 1 }}> | ||
return <KeyboardAvoidingView behavior={Platform.OS == "ios" ? "padding" : "height"} style={{ flex: 1 }}> | ||
<ScrollView style={{ backgroundColor: '#FFFFFF', flex: 1 }}> | ||
@@ -110,0 +110,0 @@ { |
import React, { Component } from 'react'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView } from 'react-native'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView, Platform } from 'react-native'; | ||
import i18n from '../locales'; | ||
@@ -114,3 +114,3 @@ import { Input, Button } from 'react-native-elements'; | ||
render() { | ||
return <KeyboardAvoidingView behavior="padding" style={{ flex: 1 }}> | ||
return <KeyboardAvoidingView behavior={Platform.OS == "ios" ? "padding" : "height"} style={{ flex: 1 }}> | ||
<ScrollView style={{ backgroundColor: '#FFFFFF', flex: 1 }}> | ||
@@ -117,0 +117,0 @@ <View style={{ padding: 30, paddingVertical: 10 }}> |
import React, { Component } from 'react'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView } from 'react-native'; | ||
import { StyleSheet, View, Text, ScrollView, KeyboardAvoidingView, Platform } from 'react-native'; | ||
import i18n from '../locales'; | ||
@@ -76,3 +76,3 @@ import { Input, Button } from 'react-native-elements'; | ||
render() { | ||
return <KeyboardAvoidingView behavior="padding" style={{ flex: 1 }}> | ||
return <KeyboardAvoidingView behavior={Platform.OS == "ios" ? "padding" : "height"} style={{ flex: 1 }}> | ||
<ScrollView style={{ backgroundColor: '#FFFFFF', flex: 1 }}> | ||
@@ -79,0 +79,0 @@ <View style={{ padding: 30, paddingVertical: 10 }}> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61457