KeynoteBlankSlide constructor

const KeynoteBlankSlide({
  1. Key? key,
  2. Widget? headerWidget,
  3. Widget? bodyWidget,
  4. Widget? footerWidget,
  5. Widget? titleBodySpacing,
  6. Widget? bodyFooterSpacing,
  7. Alignment? headerAlignment,
  8. Alignment? bodyAlignment,
  9. Alignment? footerAlignment,
  10. EdgeInsets? padding,
  11. int? headerFlexUnits,
  12. int? bodyFlexUnits,
  13. int? footerFlexUnits,
  14. int? animationIndex,
  15. AnimationArguments? animationArguments,
  16. (int, int, int)? animationIndices,
})

Constructs a KeynoteBlankSlide.

headerWidget is the widget for the slide header.

bodyWidget is the widget for the slide body.

footerWidget is the widget for the slide footer.

headerAlignment is the alignment for the slide header.

bodyAlignment is the alignment for the slide body.

footerAlignment is the alignment for the slide footer.

titleBodySpacing is the widget to provide spacing between the title and body.

bodyFooterSpacing is the widget to provide spacing between the body and footer.

padding is the padding for the slide.

headerFlexUnits is the flex units for the header section.

bodyFlexUnits is the flex units for the body section.

footerFlexUnits is the flex units for the footer section.

animationIndex is the index at which the animation should start.

animationArguments is the animation arguments for the slide animation.

animationIndices is the tuple of indices to control the animation of individual sections.

Implementation

const KeynoteBlankSlide({
  super.key,
  this.headerWidget,
  this.bodyWidget,
  this.footerWidget,
  this.titleBodySpacing,
  this.bodyFooterSpacing,
  this.headerAlignment,
  this.bodyAlignment,
  this.footerAlignment,
  this.padding,
  this.headerFlexUnits,
  this.bodyFlexUnits,
  this.footerFlexUnits,
  this.animationIndex,
  this.animationArguments,
  this.animationIndices,
});