python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
React-Native Placing Pressable above background Image
I have a background Image that I am placing overtop of all of my other elements.
Screen
...other stuff...
return (
<View style={styles.body}>
<FlatList
...
KraveXL
Votes: 0
Answers: 1
Fetching Data on useEffect
Consider the following block of code:
import React from 'react';
import Card from './components/Card';
import './App.css';
import Buttongrp from './components/Buttongrp';
import { useEffect, useState ...
Vedant Shah
Votes: 0
Answers: 3
when i enter email/password in the login same is binded to the other form simultaneously.how can i avoid this and make it independent respectively?
I have a login page and it has two forms 1.signup 2.login form .both share same data model .
Signup and login functionalities works fine.but when i enter email/password the same is binded to the ot...
Priya Balasubramanian
Votes: 0
Answers: 1
Can't stop React from updating the main component after state change
I'm having the following issue.
I have a component called "BackgroundService" who has a setInterval for requesting data from an API every 5 seconds. The received data from API is stored in &...
Enrique García
Votes: 0
Answers: 1