FLAppBarTitle constructor

FLAppBarTitle({
  1. Key? key,
  2. required String title,
  3. TextStyle? titleStyle,
  4. String? subtitle,
  5. TextStyle? subtitleStyle,
  6. FLAppBarTitleLayout layout = FLAppBarTitleLayout.horizontal,
  7. bool showLoading = false,
  8. FLAppBarPosition loadingPosition = FLAppBarPosition.left,
  9. Widget? customAccessoryWidget,
  10. FLAppBarPosition accessoryPosition = FLAppBarPosition.right,
})

Implementation

FLAppBarTitle(
    {Key? key,
    required this.title,
    this.titleStyle,
    this.subtitle,
    this.subtitleStyle,
    this.layout = FLAppBarTitleLayout.horizontal,
    this.showLoading = false,
    this.loadingPosition = FLAppBarPosition.left,
    this.customAccessoryWidget,
    this.accessoryPosition = FLAppBarPosition.right})
    : super(key: key);