slick_slides library

Classes

AnimatedCodeSlide
A slide that displays code and optionally animates between code snippets.
Bullets
A widget that displays a list of bullets. numVisibleBullets can be used to control how many bullets should be displayed. The rest of the bullets will be hidden, but will still take up space.
BulletsSlide
A slide that displays a list of bullet points.
ColoredCode
A widget that displays and optionally animates code with syntax highlighting.
ContentLayout
A basic layout for a slide. It can have a title, subtitle, and content.
FormattedCode
Represents a code snippet with optionally highlighted lines.
FullScreenImageSlide
A slide that displays a title and subtitle centered on the slide.
GradientText
A widget that displays text with a gradient.
PersonLayout
The layout used by PersonSlide.
PersonSlide
A slide that displays information about a person. It can have a name, title, and an image.
SlickFadeTransition
A transition that fades between slides. If color is specified, the transition will fade through that color.
SlickSlides
A class that initializes the slick_slides package, by loading required resources.
SlickTransition
A transition used when navigating between slides.
Slide
Represents a single slide in a SlideDeck. A slide has a builder that builds the content of the slide, and an optional notes field that can be used to add presenter notes to the slide. By default, a slide uses the main theme of the SlideDeck, but a theme can be specified to override the theme for a single slide. You can also specify a transition to use when transitioning to the slide.
SlideDeck
A deck of slides. It takes a list of Slides, and builds the content of the slides using the Slide.builder callback. The SlideDeck widget also handles navigation between the slides, and provides a default theme for the slides.
SlideDeckState
The state of a SlideDeck.
SlideTextThemeData
The text theme used to style text on a slide.
SlideTheme
Inherited widget used to pass SlideThemeData down the widget tree. The configuration can be accessed using SlideTheme.of when building a Slide.
SlideThemeData
The theme used to style a Slide. A default theme is provided by the SlideDeck, but can be overridden by providing a custom SlideTheme to a specific Slide.
TitleLayout
The layout of a slide with a title and subtitle.
TitleSlide
A slide that displays a title and subtitle centered on the slide.
VideoLayout
A layout that displays a video using the VideoPlayer widget.
VideoSlide
A slide that displays a video.

Enums

BulletsImageLocation
The position of an image in a BulletsSlide.

Typedefs

SubSlideWidgetBuilder = Widget Function(BuildContext context, int index)
Builds the content of a slide, when there are more than one sub-slide.