diff --git a/CHANGELOG.md b/CHANGELOG.md index f27d69cf..b6ddedda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [2.0.2] +### 🛠️ Fixed 🛠️ +* Fixed images in generated documentation. + ## [2.0.1] ### 🔄 Updated 🔄 * `PushButton` has received a facelift. It now mimics the look and feel of native macOS buttons more closely. diff --git a/lib/src/indicators/slider.dart b/lib/src/indicators/slider.dart index 9e5e7514..e32fc360 100644 --- a/lib/src/indicators/slider.dart +++ b/lib/src/indicators/slider.dart @@ -20,7 +20,6 @@ const double _kDiscreteThumbBorderRadius = 8; /// The slider doesn't maintain any state itself, instead the user is expected to /// update this widget with a new [value] whenever the slider changes. /// -/// {@image } /// {@endtemplate} class MacosSlider extends StatelessWidget { /// {@macro macosSlider} diff --git a/lib/src/layout/sidebar/sidebar_item.dart b/lib/src/layout/sidebar/sidebar_item.dart index b7e2d487..1454ccbd 100644 --- a/lib/src/layout/sidebar/sidebar_item.dart +++ b/lib/src/layout/sidebar/sidebar_item.dart @@ -62,7 +62,7 @@ class SidebarItem with Diagnosticable { /// /// Typically a text indicator of a count of items, like in this /// screenshots from the Apple Notes app: - /// {@image } + /// final Widget? trailing; @override diff --git a/lib/src/layout/tab_view/tab_view.dart b/lib/src/layout/tab_view/tab_view.dart index fa32c734..cca58d2a 100644 --- a/lib/src/layout/tab_view/tab_view.dart +++ b/lib/src/layout/tab_view/tab_view.dart @@ -26,7 +26,7 @@ enum MacosTabPosition { /// {@template macosTabView} /// A multipage interface that displays one page at a time. /// -/// {@image } +/// /// /// A tab view contains a row of navigational items, [tabs], that move the /// user through the provided views ([children]). The user selects the desired diff --git a/pubspec.yaml b/pubspec.yaml index 8ffa130b..8d81c2da 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: macos_ui description: Flutter widgets and themes implementing the current macOS design language. -version: 2.0.1 +version: 2.0.2 homepage: "https://macosui.dev" repository: "https://github.com/GroovinChip/macos_ui"