FHeader.nested constructor

const FHeader.nested({
  1. required Widget title,
  2. FNestedHeaderStyle? style,
  3. List<Widget> leftActions,
  4. List<Widget> rightActions,
  5. Key? key,
})

Creates a nested header.

It is typically used on pages NOT at the root of the navigation stack.

Implementation

const factory FHeader.nested({
  required Widget title,
  FNestedHeaderStyle? style,
  List<Widget> leftActions,
  List<Widget> rightActions,
  Key? key,
}) = _FNestedHeader;