build property

Widget Function(BuildContext context, Orientation orientation, Widget child, bool dark, SystemUiOverlayStyle navigationBarStyle)? build
final

Optional builder function to customize the frame's appearance.

When provided, this function builds the frame UI around the child widget, allowing for device-specific elements like status bars, notches, etc.

Implementation

final Widget Function(
  BuildContext context,
  Orientation orientation,
  Widget child,
  bool dark,
  SystemUiOverlayStyle navigationBarStyle,
)? build;