KeynoteBulletsSlide constructor
const
KeynoteBulletsSlide({
- required List<
String> bulletPoints, - ListBullets? bullets,
- TextStyle? bulletTextStyle,
- Alignment? bulletPointsAlignment,
- TextAlign? bulletTextAlignment,
- EdgeInsets? bulletPointsPadding,
- EdgeInsets? padding,
- Widget? bulletPointsWidgetReplacement,
- int? animationIndex,
- AnimationArguments? animationArguments,
- Key? key,
Constructs a KeynoteBulletsSlide.
bulletPoints
is the list of texts to display on the slide.
bullets
is the enum value representing the bullet style, that
should be displayed before each text.
bulletTextStyle
is the text style for the bullet points.
bulletPointsAlignment
is the alignment for the bullet points.
bulletTextAlignment
is the text alignment
for the bullet points.
bulletPointsPadding
is the padding for the bullet points.
padding
is the padding for the slide.
footerFlexUnits
is the flex units for the footer section.
bulletPointsWidgetReplacement
is the widget
replacement for the bullet points section.
animationIndex
is the index at which the
animation should start.
animationArguments
is the animation arguments
for the slide animation.
Implementation
const KeynoteBulletsSlide({
required this.bulletPoints,
this.bullets,
this.bulletTextStyle,
this.bulletPointsAlignment,
this.bulletTextAlignment,
this.bulletPointsPadding,
this.padding,
this.footerFlexUnits,
this.bulletPointsWidgetReplacement,
this.animationIndex,
this.animationArguments,
super.key,
});