使用InputTextField和DropDownMenu构建表单

时间:2019-12-04 08:56:35

标签: flutter flutter-layout flutter-dependencies

请我在Flutter中构建一个同时包含TextFormFields和DropDownButton的Form小部件,有人可以帮助我显示执行此操作的适当方法吗?谢谢

1 个答案:

答案 0 :(得分:0)

请在下面检查带有表格的TypeAhead示例。

https://github.com/AbdulRahmanAlHamali/flutter_typeahead

TypeAheadField(
  getImmediateSuggestions: false,
  textFieldConfiguration: TextFieldConfiguration(
    autofocus: false,
    controller: _typeAheadFullTextController,  
    decoration: InputDecoration(
        hintText: "Enter keyword.",
      //  suffixIcon: 
        )
     ),
  suggestionsCallback: (pattern) {},
  itemBuilder: (context, suggestion) {
    return ListTile(
      title: Text(suggestion),
    );
  },
  onSuggestionSelected: (suggestion) {
  },
);