2

how to make appbar lok like is opening a modal?

enter image description here

picture 1 = what exactly what i want to make

picture 2 = i tried with showModalBottomSheet with in case thats not allow me to make it height strecth until appbar

picture 3 = i try with Flutter Backdrop its look like what i want, but the appbar cannot like showModalBottomSheet,

please help me, how to make the appbar has shadow like showModalBottomSheet does, or how to hack showModalBottomSheet so i can make it height below the appbar?

RIFAL
  • 3,207
  • 4
  • 17
  • 29

1 Answers1

0

You have to create your own PageRoute class:

class _YourPageRoute<T> extends MaterialPageRoute<T> {
  ...
  @override
  bool get opaque => false;
}

Now push this route to your navigator:

Navigator.push(context, _YourPageRoute(builder: ...));

Check this answer too.

ibhavikmakwana
  • 8,948
  • 4
  • 20
  • 39