Expanded(
child: TextField(
controller: TextEditingController(text: items[index].column),
),
),
Expanded(
child: DropdownButton(
value: "Строка",
items: TypeToDb.keys.map((e) => DropdownMenuItem<String>(value: e, child: Text(e))).toList(),
onChanged: (String? value) {},
),
)
],
),)
Как сделать чтобы Dropdown был на одном уровне с TextField?
https://api.flutter.dev/flutter/material/DropdownButtonFormField-class.html
Обсуждают сегодня