FluentAppBar constructor

FluentAppBar({
  1. Key? key,
  2. required String titleText,
  3. required ScrollController scrollController,
  4. int scrollOffset = 34,
  5. Color appBarColor = Colors.white,
  6. Color boxShadowColor = Colors.black,
  7. Color titleColor = Colors.black,
  8. FontWeight titleFontWeight = FontWeight.bold,
})

Implementation

FluentAppBar({
  Key? key,
  required this.titleText,
  required this.scrollController,
  this.scrollOffset = 34,
  this.appBarColor = Colors.white,
  this.boxShadowColor = Colors.black,
  this.titleColor = Colors.black,
  this.titleFontWeight = FontWeight.bold,
}) : super(key: key);