icemanbsi / searchable_dropdown

MIT License
107 stars 162 forks source link

Center the selected item value #97

Open joshipucher opened 4 years ago

joshipucher commented 4 years ago

Hello.

Is there a way to center the output in the field? So far, I was only able to center the hint text with

hint: Padding(
                  padding: const EdgeInsets.all(12.0),
                  child: Text("Rasse auswählen", textAlign: TextAlign.center),
                ),
priya2511-creator commented 4 years ago

selectedValueWidgetFn: (item) { return Align( alignment: Alignment.center, child: Text(item), ); }, Use this for aligning the output in the center