Note that you should be able to run this app with flutter run on at least web and iOS on the update-to-latest-things branch. The agent will need to figure out the specifics of that itself.
In the update-to-latest-things branch, where I've updated to Dart 3, I'm seeing issues about a Rect.fromLTRB call. It seems, in some Flutter version between the last and mine, something in the renderer (rooted in lib/music_view/music_view.dart, or really probably lib/music_view/music_system_painter.dart) is rendering a 0-width/0-height rectangle, causing the whole rendering pipeline to crash and music not to render (though the app itself does not crash).
Create a PR against the update-to-latest-things branch for this (and base all work on that), fixing that error, and getting music rendering working again.
Note that you should be able to run this app with
flutter runon at least web and iOS on theupdate-to-latest-thingsbranch. The agent will need to figure out the specifics of that itself.In the
update-to-latest-thingsbranch, where I've updated to Dart 3, I'm seeing issues about aRect.fromLTRBcall. It seems, in some Flutter version between the last and mine, something in the renderer (rooted inlib/music_view/music_view.dart, or really probablylib/music_view/music_system_painter.dart) is rendering a 0-width/0-height rectangle, causing the whole rendering pipeline to crash and music not to render (though the app itself does not crash).Create a PR against the
update-to-latest-thingsbranch for this (and base all work on that), fixing that error, and getting music rendering working again.