возможно ли центрировать текст внутри SimpleAutoCompleteTextField?
Я пробовал Directionaly, но там нет «центра». Не удалось найти параметр выравнивания. Есть предложения?
SimpleAutoCompleteTextField(
controller: widget._ingi_name_controller,
key: searchIngredientKey,
decoration: InputDecoration(
border: UnderlineInputBorder(
borderSide:
BorderSide(color: Theme.of(context).primaryColor),
),
hintText: 'hint',
),
suggestions: widget.ingredientSuggestions,
clearOnSubmit: false,
textChanged: (text) {
setState(() {});
},
submitOnSuggestionTap: true,
textSubmitted: (text) {}),