maybeOf static method

SafaehBottomNavMetrics? maybeOf(
  1. BuildContext context
)

Returns the nearest shell metrics, or null when the page is outside a bottom-navigation shell.

Implementation

static SafaehBottomNavMetrics? maybeOf(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<_SafaehBottomNavInherited>()
      ?.metrics;
}