Flutter Text Button Autofocus
TextButton(
autofocus: true, // boolean
onPressed: (){},
child: const Text('TextButton')
)
Sore Serval