Hi @mil1, thank you for writing! Yes, this is because, in the latest release of Flutter 3.10, the initial project template has changed and it now includes a background color set to the inverse of the primary color (which is white) in the AppBar of MyHomePage. If you remove the backgroundColor from it, then it should be okay now. You can do so by changing appbar to the following:
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),