Skip to content

v2.0.0

Latest
Compare
Choose a tag to compare
@alestiago alestiago released this 03 Jun 19:20
· 5 commits to main since this release
c505888
  • chore!: upgrade to flutter 3.32.0 (#98)
  • fix: update constraint in pubspec.yaml (#101)

Migration details

Flutter 3.32.0 changed the signature of Navigator.removeRouteBelow which caused a compile time error flutter/flutter#157725.

// Before:
when(() => navigator.removeRouteBelow(any())).thenAnswer((_) {});

// After:
when(
  () => navigator.removeRouteBelow<Object?>(any(), any()),
).thenAnswer((_) {});