React-Native-Login-Screen-Tutorial
React-Native-Login-Screen-Tutorial copied to clipboard
Login button is not showing with full width
Login button is not showing with full width of 80%. It is showing width upto what LOGIN text is using.
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';