Можно ли изменить всплывающее окно с предложением? Я не могу найти способ изменить всплывающее окно с предложением: стиль текста и т. Д. c .... Спасибо за любые ответы.
всплывающее изображение
new Flexible(
child: SimpleAutoCompleteTextField(
key: key,
controller: controllerList,
decoration: InputDecoration(
contentPadding: EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 10.0),
labelText: 'prodotto da acquistare',
hintText: 'inserisci',
icon: Icon(Icons.local_grocery_store),
//isDense: true,
),
suggestions: suggestions,
textChanged: (text) => currentText = text,
// clearOnSubmit: false,
clearOnSubmit: true,
textSubmitted: (text) => setState(() {
if (text != "") {
name = text;
validate();
}
}),
),
),