问题 I was trying to preproduce all of the update operations on an AnimatedList like I have done for a RecyclerView adapter in Android. But when I got to clearing all of the data, I couldn't figure out how to do it. If I do this setState(() { _data.clear(); }); then the backing data is cleared but the GlobalKey's current state still doesn't know about the change, and there is no clear() method on it. Supplemental code import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class