DropdownButtonの使い方 api.flutter.dev Firebaseから取得したオブジェクトの形式 { name: 'AAA', order: 1, folderId: 'id' } 実際のコード DropdownButton作成 DropdownButton<String>( value: model.selectFolderId, hint: Text('フォルダ'), icon: const Icon(Icons.arrow_downward), elevation: 16, style: const TextStyle(color: Colors.deepPurple…