Skip to content

Commit

Permalink
Release v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkobuolys committed Jan 26, 2024
1 parent 2f3aa2c commit 56a749b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
# NEXT
# 0.11.0

- feat: set scroll position to currently active slide on navigation drawer open
- fix: FlutterDeckBulletList scaling issues
Expand Down
52 changes: 26 additions & 26 deletions README.md
Expand Up @@ -412,6 +412,32 @@ class CustomSlide extends FlutterDeckSlideWidget {
}
```

## Generating slides

This package comes with a [mason][mason_link] template that can be used to generate a new slide for the slide deck.

Ensure you have the [mason_cli][mason_cli_link] installed:

```sh
dart pub global activate mason_cli
```

Install the [flutter_deck_slide][flutter_deck_slide_brick] template:

```sh
# Install locally
mason add flutter_deck_slide

# Install globally
mason add -g flutter_deck_slide
```

Generate a new slide:

```sh
mason make flutter_deck_slide
```

## Theming

You can customize the theme of your slide deck by providing a `FlutterDeckThemeData` to the `FlutterDeckApp` widget:
Expand Down Expand Up @@ -847,32 +873,6 @@ The auto-play feature allows you to automatically navigate through the slide dec

![Auto-play demo](https://github.com/mkobuolys/flutter_deck/blob/main/images/autoplay.gif?raw=true)

## Generating slides

This package comes with a [mason][mason_link] template that can be used to generate a new slide for the slide deck.

Ensure you have the [mason_cli][mason_cli_link] installed:

```sh
dart pub global activate mason_cli
```

Install the [flutter_deck_slide][flutter_deck_slide_brick] template:

```sh
# Install locally
mason add flutter_deck_slide

# Install globally
mason add -g flutter_deck_slide
```

Generate a new slide:

```sh
mason make flutter_deck_slide
```

## Presentations built with flutter_deck 🚀

| Title | Language | Author |
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,6 +1,6 @@
name: flutter_deck
description: A lightweight, customizable, and easy-to-use framework to create presentations in Flutter.
version: 0.10.1
version: 0.11.0
homepage: https://github.com/mkobuolys/flutter_deck
repository: https://github.com/mkobuolys/flutter_deck
issue_tracker: https://github.com/mkobuolys/flutter_deck/issues
Expand Down

0 comments on commit 56a749b

Please sign in to comment.