KeynotePhoto3UpSlide constructor
const
KeynotePhoto3UpSlide({
- required Widget bigImage,
- required Widget smallImageOne,
- required Widget smallImageTwo,
- EdgeInsets? padding,
- EdgeInsets? imagesPadding,
- int? animationIndex,
- AnimationArguments? animationArguments,
- 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,
});