#dart, #Flutter, #Arrays, #Android #Form, #Custom input from TextField. This is what I'm trying to do, but I'm sure it's wrong. List _numController =_controller=List();
Asked
Active
Viewed 89 times
-3
-
Please add some more context to the question. It is unclear as to what you want to achieve. Welcome to stackoverflow. – Arsh Shaikh Aug 16 '20 at 13:02
1 Answers
0
If I understand you, you would like just the text value of the controller? _numController.text

user3875913
- 245
- 2
- 11
-
Yes, the text value of the controller but in Array/List format, particularly growable list. I want to accept data as a form of a list., for example "allDef": [ "Definition one", "Definition two", "Definition Three" ] – Sami Shegga Aug 16 '20 at 11:57
-
@SamiShegga I suggest you use regex to detect spaces and to add text to a list to the controller listener – user3875913 Aug 17 '20 at 09:29