setStateを使用してリストA(updateList)をアップデートするコードを書きました。
リストAを基にしたListview.Builderがあるのですが、リストAがアップデートされてもそれだけアップデートされません。
UI上のListview.Builderをアップデートする方法を教えていただきたいです。
Flutter
1 2↓textbuttonのpressedFunction 3void pressedFunction() { 4 setState(() { 5 inputText = _nameController.text; 6 _nameController.clear(); 7 updateList.add(inputText); 8 print(updateList.toString()); 9 }); 10 } 11 12↓Column内 13Row( 14 children: [ 15 TextField( 16 controller: _nameController, 17 ), 18 TextButton( 19 style: ButtonStyle(backgroundColor: MaterialStateProperty.all(Colors.brown[100])), 20 onPressed: pressedFunction, 21 child: const Text( 22 "data", 23 style: TextStyle(color: Colors.brown), 24 )), 25 ], 26 ), 27 Expanded( 28 child: SizedBox( 29 height: updateList.length * 50, 30 child: ListView.builder( 31 itemCount: updateList.length, 32 itemBuilder: (context, index) { 33 return Card( 34 child: ListTile( 35 title: Text('${updateList[index]}'), 36 )); 37 }, 38 ), 39 ), 40 ),
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。