showBottom static method

OverlayShower showBottom(
  1. Widget child, {
  2. String? key,
})

Implementation

static OverlayShower showBottom(Widget child, {String? key}) {
  OverlayShower shower = show(child, key: key);
  shower.alignment = Alignment.bottomCenter;
  shower.padding = const EdgeInsets.only(bottom: 64);
  return shower;
}