React-Native-Login-Screen-Tutorial icon indicating copy to clipboard operation
React-Native-Login-Screen-Tutorial copied to clipboard

Login button is not showing with full width

Open hemalrathod opened this issue 5 years ago • 1 comments

Login button is not showing with full width of 80%. It is showing width upto what LOGIN text is using.

hemalrathod avatar Jan 24 '21 16:01 hemalrathod

Login button is not showing with full width of 80%. It is showing width upto what LOGIN text is using.

I think the fault is in your imports. Try import TouchableOpacity from 'react-native', It can help.

Replase this

import { StyleSheet, Text, View } from 'react-native';
import { TextInput, TouchableOpacity } from 'react-native-gesture-handler';

To this

import { StyleSheet, Text, View, TextInput, TouchableOpacity } from 'react-native';

JoniRinta-Kahila avatar Apr 14 '21 21:04 JoniRinta-Kahila