KeynotePhoto3UpSlide constructor

const KeynotePhoto3UpSlide({
  1. required Widget bigImage,
  2. required Widget smallImageOne,
  3. required Widget smallImageTwo,
  4. EdgeInsets? padding,
  5. EdgeInsets? imagesPadding,
  6. int? animationIndex,
  7. AnimationArguments? animationArguments,
  8. Key? key,
})

Constructs a KeynotePhoto3UpSlide.

bigImage is the widget representing the large image to display.

smallImageOne is the widget representing the first small image to display.

smallImageTwo is the widget representing the second small image to display.

padding is the padding for the slide.

imagesPadding is the padding between the images.

animationIndex is the index used for controlling the animation of the slide.

animationArguments is the animation arguments for animating the slide.

Implementation

const KeynotePhoto3UpSlide({
  required this.bigImage,
  required this.smallImageOne,
  required this.smallImageTwo,
  this.padding,
  this.imagesPadding,
  this.animationIndex,
  this.animationArguments,
  super.key,
});