Adding a Chip to a Material TextField

Multi tool use
Adding a Chip to a Material TextField
Say we created a Chip object and TextField
object like below. How do you add a Chip
to the inside of the TextField
?
TextField
Chip
TextField
new Chip(
label: new Text('Peyton Smith'),
)
new TextField(
)
Is it possible to combine them to get something like in the Material spec where typing in something into a Material TextField
adds a Chip
?
TextField
Chip
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.