PdfActionBarTheme constructor

const PdfActionBarTheme({
  1. Color? backgroundColor,
  2. Color? iconColor,
  3. double? height,
  4. TextStyle? textStyle,
  5. double elevation = 4.0,
  6. double actionSpacing = 0.0,
  7. WrapAlignment alignment = WrapAlignment.spaceAround,
  8. WrapAlignment runAlignment = WrapAlignment.center,
  9. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.center,
})

Creates a theme for action bar of PdfPreviewController.

Implementation

const PdfActionBarTheme({
  this.backgroundColor,
  this.iconColor,
  this.height,
  this.textStyle,
  this.elevation = 4.0,
  this.actionSpacing = 0.0,
  this.alignment = WrapAlignment.spaceAround,
  this.runAlignment = WrapAlignment.center,
  this.crossAxisAlignment = WrapCrossAlignment.center,
});