I'm working on a name generator that I can add names to after it's finished. I can add names via a text box and add button right now, but I'm running into the problem of adding multiple names to the list.
My first idea is to just copy/paste all the names into the text box with commas seperating them, then use split to break it up and add that on to my names list. My only problem with this is that the text box is either far too tiny, or I have to put it on a brand new screen so that it's not unwieldy to use.
My other idea is to somehow get at the original list file that it reads from on my phone in and change it there. Problem: that's still kind of complicated, even if it works, and I'd rather do this all in the app.
I'd like to be able to just upload a TXT or CSV file in the app and have it replace the current asset file, but I don't know if that's even possible, since there's not any kind of file picker component.
Is one of the first two methods truly the best that's out there? Is the last one possible, and if so, how? Am I just missing something?
I am brand new to the app, so there may be something obvious that I just can't see lol ^^"