Posts by Itoh • 9 points
5 posts
-
0
votes1
answer97
viewsQ: Text does not appear using React Hooks with Redux
I’m trying to get a string saved in my store state and put it in a text component, but the text is not showing up. To call the string, I’m doing it this way: import {useSelector} from 'react-redux'…
-
-1
votes1
answer178
viewsQ: Asyncstorage with dynamic keys does not save values
I’m trying to make a list where the user sees all the Keys he saved in the app and when he clicks on them will occur the load of the preset he made based on the key. I’m getting the bug: Typeerror:…
-
0
votes1
answer203
viewsQ: React Native only works with 2 clicks
In this code, the function only works after being called twice. ubernehmen = () => { this.setState({wert: ((this.state.cor*208)+(this.state.letra*8)}) this.setState({werta:…
-
0
votes0
answers38
viewsQ: Dispatcher does not recognize payload React Native Redux
When trying to save a new state in the Redux store it says that such a variable does not exist. Dispatcher (where it points to error): export const valorMdoisD = () =>{ return{ type: ALIGN_M,…
-
-1
votes1
answer1105
viewsQ: Image does not appear in Flatlist React Native
Hello, I’m trying to put together a list with some elements inside it but the image element does not appear but returns the right image size. I created an array with the data I want to show, then…