Posts by Tiago Boer Casagrande • 26 points
3 posts
-
0
votes1
answer95
viewsA: Display inputText according to the quantity selected in the React-Native Picker
You can create an array from the selected quantity in your Picker and this array returns to you Textinput’s. More or less like this: export default function Screen() { const [selectedValue,…
-
1
votes1
answer356
viewsA: Error Trying to Run React Native project on Android physical device
Edit Check the path where your project is located and try to put in a folder that does not contain special characters, in your case it would be the folder "Programming". Rename this folder to…
-
0
votes1
answer753
viewsA: Take data from an React Native array
First, the ideal would be for you to create a function async outside the componentDidMount. With the function created outside, you simply call it in componentDidMount leaving him normal, without…