skip to Main Content

Current Text Input React Native

I have a component and use of this component I can't write the correct input so that you can enter only numbers without , . and so on, please help component use of component my component export default function AppTextInput({icon,…

VIEW QUESTION

Error: Failed to initialize react-native-reanimated library – React native

Trying to create a drawer navigator in React Native using VSCode. import { createDrawerNavigator } from '@react-navigation/drawer'; const Drawer = createDrawerNavigator(); When I get this error: Error: Failed to initialize react-native-reanimated library, make sure you followed installation steps here: https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/installation/…

VIEW QUESTION

Hide and Show password in react native with vector icon

import React, { useState } from 'react' import { Text, View, Image, Pressable, TextInput, TouchableOpacity } from 'react-native' import Icon from 'react-native-vector-icons/FontAwesome'; const Signin = ({ navigation }) => { const [passwordVisibility, setPasswordVisibility] = useState(true); const [rightIcon, setRightIcon] = useState('eye');…

VIEW QUESTION
Back To Top
Search