flutter_deck 0.3.0 copy "flutter_deck: ^0.3.0" to clipboard
flutter_deck: ^0.3.0 copied to clipboard

A lightweight, customizable, and easy-to-use framework to create presentations in Flutter.

0.3.0 #

  • feat: handle cursor visibility
  • refactor: create FlutterDeckControls and FlutterDeckControlsNotifier to centralize the flutter deck control logic
  • docs: update README.md

0.2.0 #

  • BREAKING: feat: updated background method signature for the FlutterDeckSlideBase

    • Migration: update the background method signature in your code from:

      Widget? background(BuildContext context)
      

      to:

      FlutterDeckBackground background(BuildContext context)
      
    • Instead of:

      Widget? background(BuildContext context) {
        return null;
      }
      

      do:

      FlutterDeckBackground background(BuildContext context) {
        return FlutterDeckBackground.transparent();
      }
      
    • Instead of:

      Widget? background(BuildContext context) {
        return YourCustomBackgroundWidget();
      }
      

      do:

      FlutterDeckBackground background(BuildContext context) {
        return FlutterDeckBackground.custom(
          child: YourCustomBackgroundWidget(),
        );
      }
      
  • feat: add FlutterDeckCodeHighlight widget

  • feat: make the background configurable for the whole slide deck

  • feat: allow to hide slides in the slide deck

  • feat: add presentation progress indicator

  • fix: drawer toggle

  • docs: update the example app and README.md

0.1.0+3 #

  • docs: extend README.md with more information, code snippets and presentation examples

0.1.0+2 #

  • docs: minor README.md update

0.1.0+1 #

  • feat: initial commit 🎉
190
likes
0
pub points
70%
popularity

Publisher

verified publisherkazlauskas.dev

A lightweight, customizable, and easy-to-use framework to create presentations in Flutter.

Repository (GitHub)
View/report issues

Topics

#presentation #slides

Funding

Consider supporting this project:

github.com

License

unknown (license)

Dependencies

auto_size_text, flutter, flutter_highlight, go_router

More

Packages that depend on flutter_deck