CarpenterTopPanel constructor

const CarpenterTopPanel({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. Widget? leading,
  5. List<Widget> actions = const [],
  6. Widget? child,
  7. double? height,
  8. EdgeInsetsGeometry? padding,
  9. bool showDivider = true,
})

Создает верхнюю панель.

Implementation

const CarpenterTopPanel({
  super.key,
  this.title,
  this.subtitle,
  this.leading,
  this.actions = const [],
  this.child,
  this.height,
  this.padding,
  this.showDivider = true,
});