Flutter: Spinning sync icon in AppBar

Issue How can I animate an IconButton placed in a AppBar? The sync icon should spinning while a database synchronisation is running. class _HomePageState extends State<HomePage> { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(“Dashboard”), actions: <Widget>[

Continue reading