OudsTopBar constructor

const OudsTopBar({
  1. Key? key,
  2. String? title,
  3. bool translucent = false,
  4. OudsTopBarSize size = OudsTopBarSize.small,
  5. List<OudsTopBarActionConfig>? leadingActions,
  6. List<OudsTopBarActionConfig>? trailingActions,
  7. OudsTopAppBarConfig? materialConfig,
})

Implementation

const OudsTopBar({
  super.key,
  this.title,
  this.translucent = false,
  this.size = OudsTopBarSize.small,
  this.leadingActions,
  this.trailingActions,

  /// This parameter is ignored on iOS/Cupertino
  this.materialConfig,
});