FHeader constructor

const FHeader({
  1. Widget title,
  2. FHeaderStyle style(
    1. FHeaderStyle style
    )?,
  3. List<Widget> suffixes,
  4. Key? key,
})

Creates a header whose title is aligned to the start.

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

CLI

To generate and customize this widget's style:

dart run forui style create headers

Implementation

const factory FHeader({
  Widget title,
  FHeaderStyle Function(FHeaderStyle style)? style,
  List<Widget> suffixes,
  Key? key,
}) = _FRootHeader;