Learning Flutter for the first time. return ListView widget
I'm playing arround with Flutter and the first app demo from their codelab. I don't understand why this doesn't work: class HistoryList extends StatelessWidget { @override Widget build(BuildContext context) { var appState = context.watch<MyAppState>(); if (appState.history.isEmpty) { return Center( child:…