skip to Main Content

dropdown search flutter type 'List<dynamic>' is not a subtype of type 'Map<String, dynamic>' in type cast

i am trying to make a dropdown button with firebase api DropdownSearch<Tipe>( popupProps: PopupProps.dialog( showSearchBox: true, itemBuilder: (context, item, isSelected) => ListTile( title: Text(item.name), ), ), dropdownDecoratorProps: DropDownDecoratorProps( dropdownSearchDecoration: InputDecoration( labelText: "Tipe", ), ), onChanged: (value) { setState(() { idTipe…

VIEW QUESTION
Back To Top
Search