CAppBar constructor

CAppBar({
  1. Key? key,
  2. required String title,
  3. VoidCallback? onPressed,
  4. bool backButton = true,
  5. String? backButtonImage,
  6. String? action,
  7. double? actionWidth,
  8. double? actionHeight,
  9. VoidCallback? onActioned,
})

Implementation

CAppBar(
    {super.key,
    required this.title,
    this.onPressed,
    this.backButton = true,
    this.backButtonImage,
    this.action,
    this.actionWidth,
    this.actionHeight,
    this.onActioned});