Posts by Only_A_Perfil • 95 points
4 posts
-
3
votes4
answers292
viewsQ: How to find the index of an object in a javascript list
I am trying to get the index of an object in the following list: let list = [ {nome: joão, idade: 15}, {nome: pedro, idade: 17}, {nome: felipe, idade: 12}, ] But when I try to use command…
javascriptasked Only_A_Perfil 95 -
0
votes1
answer678
viewsQ: Add Items to a Flatlist
I’ve been trying to add Items to a Flatlist in React Native, so I used the following code: export default function App(){ var list = [ {text: 'Hello', key: 1}, {text: 'Bye', key: 2} ] return(…
-
4
votes2
answers516
viewsQ: Can I run a Reactive Native app on Iphone through Windows?
Well, I have an Iphone Xr and I want to develop an app in Reactive Native and test it using my Iphone(by USB, no need for emulators), but my computer is a windows 10, not a mac. Even not being a…
-
1
votes5
answers1328
viewsQ: How to create folders in python desktop
I was hoping to make a python program that would create a folder on the desktop, so I did: import subprocess subprocess.call('mkdir Pasta_Teste', shell= True) But the code created a folder inside…