the labeltext field I set for AutoSizeTextField is insufficient. Is there a way to do multiline?
AutoSizeTextField(
...
style: TextStyle(
fontSize: 22, color: Colors.black),
decoration: InputDecoration(
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0),
),
labelText: AppLocalizations.of(context)
.translate('total_spent'),
labelStyle: TextStyle(
fontSize: 22, color: Colors.black,),
hintText: spent.toString(),
contentPadding: const EdgeInsets.all(10.0),
...
