Skip to main content

All Questions

0 votes
0 answers
33 views

Expo React, use hook from outside a export default func app

I need assistance with expo and react Hooks I need to manipulate the hook display (profil.tsx) from outside an app export. From the last file login.js from a regular JS function. Is there a way I can ...
Sheee's user avatar
  • 11
0 votes
1 answer
82 views

Popup window keeps closing when typing in its text box

I have this app where, in the home screen, there is a button that triggers a popup screen where I can type some text. The issue is that whenever I put any kind of text in either of the two text boxes (...
Gustavo Jun's user avatar
1 vote
1 answer
184 views

How to use TouchStart / TouchEnd to swap positions in a Table ReactJS?

I'm fairly new to react. I currently have a project that's working as intended on desktop, and I am attempting to add mobile functionality. I am displaying a bunch of objects in a table, and I want ...
user avatar
0 votes
1 answer
470 views

How to prevent re-rendering of react native ScrollView component onScroll

We are using react native ScrollView containing with different child components(with useMemo) but while scrolling the ScrollView its getting stuck. We need a smooth scrolling without re-rendering the ...
Imran Khan's user avatar
1 vote
0 answers
289 views

React Ios safari Mobile Web input focus keyboard doesn't come up

We are developing with React + Typescript. Currently, what I want to implement is when the page is rendered, I want to give focus to the input and bring up the keypad used on mobile. But the focus ...
고윤태's user avatar
-1 votes
1 answer
232 views

In react native, ANDROID,When keyboard is open, views goes also up, that disturb my design, or increasing height

in react native Android, i don't want any effect on design of my views while opening or closing of keyboard disturbed layoutnormal layout
Awesome World's user avatar
0 votes
1 answer
197 views

Video onlick event in mobile view in react is not working. Can anyone help me to solve this problem so that I can make use of onClick event in mobile

Video onlick event in mobile view in react is not working. Events like onPointerEnter, onTouchStart, onTouchMove, onTouchEnd are working on mobile view but I have to use onClick event only to open ...
MeAtWork's user avatar
2 votes
1 answer
57 views

ReactJS Website Re-Rendering and Flashing on Mobile Browser [closed]

I made an app that uses ReactJS and Firebase storage deployed on GitHub pages. Currently, the website is flashing and re-rendering on the homepage (RealHome.jsx). I am wondering what is causing this ...
Joshua Yang's user avatar
0 votes
1 answer
49 views

Is there a way to refresh the contents of HomeStacks screen in react expo on every click?

I'm developing a mobile app with react expo. I have a menu that fetches a list of items. Unfortunately, it only fetches data on the first click. When I navigate from one menu to another it does not ...
DORRA CHAARI's user avatar
0 votes
1 answer
574 views

How to go from top to bottom of a ScrollView in React Native?

I'm in a React Native project that the client wants the product image scrolls from top to bottom vice versa in a modal, how can I achive this?
Nevio Costa's user avatar
4 votes
2 answers
4k views

React Native refresh content when user hits back button - using Hooks

I would like to refresh the data, when user is back from one page to another. This is how my useEffect function looks like now: useEffect(() => { setIsLoading(true); AsyncStorage.getItem("...
csirkeautomata's user avatar