Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

- Fixed [#650](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/650) - Fix null-check crash in ShowcaseService.getController during didUpdateWidget. Fixed by @[vatsaltanna-simformsolutions](https://github.com/vatsaltanna-simformsolutions)
- Fixed [#633](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/633) - Improve showcase flow by consolidating finish logic and handling missing targets. Fixed by @[vasu-nageshri](https://github.com/vasu-nageshri)
- Fixed [#633](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/633) - Added `ShowcaseView.isTargetRendered` to detect whether a showcase target is currently rendered, replacing the 4.x.x `key.currentContext` / `key.currentWidget` check. Fixed by @[vatsaltanna-simformsolutions](https://github.com/vatsaltanna-simformsolutions)
- Fixed [#633](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/633) - Added `ShowcaseView.isTargetRendered` to detect whether a showcase target is currently rendered, replacing the 4.x.x `key.currentContext` / `key.currentWidget` check. Fixed by @[vatsaltanna-simformsolutions](https://github.com/vatsaltanna-simformsolutions)
- Fixed [#645](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/645) - Prevent re-entrant calls to _onComplete during rapid barrier taps. Fixed by @[apizon](https://github.com/apizon)
- Fixed [#639](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/639) - Add null-safety guards for async sequence transitions. Fixed by @[vasu-nageshri](https://github.com/vasu-nageshri)
- Fixed [#622](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/622) - Resolve Semantics issue when using `go_router` and `showSemanticsDebugger` flag. Fixed by @[Sahil-Simform](https://github.com/Sahil-Simform)
- Fix [#620](https://github.com/SimformSolutionsPvtLtd/showcaseview/pull/620)- Set MouseRegion opaque property to false for improved interaction in TargetWidget, TooltipWrapper, and FloatingActionWidget. Fixed by @[RuslanTsitser](https://github.com/RuslanTsitser)

## [5.0.2]

Expand All @@ -25,7 +26,7 @@

- Fixed [#576](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/576) - Fixed the showcase key update issue by removing the old controller entry and registering the new key.
- Fixed [#578](https://github.com/SimformSolutionsPvtLtd/showcaseview/issues/578) - Fixed showcase key issue.
- Fixed [#583](https://github.com/SimformSolutionsPvtLtd/showcaseview/pull/583) - Accommodate
- Fixed [#583](https://github.com/SimformSolutionsPvtLtd/showcaseview/pull/583) - Accommodate
over scroll when auto scroll is enabled.

## [5.0.0]
Expand Down
1 change: 1 addition & 0 deletions lib/src/showcase/target_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ class TargetWidget extends StatelessWidget {
child: disableDefaultChildGestures
? IgnorePointer(child: targetWidgetContent)
: MouseRegion(
opaque: false,
cursor: SystemMouseCursors.click,
child: targetWidgetContent,
),
Expand Down
2 changes: 2 additions & 0 deletions lib/src/tooltip/tooltip_wrapper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ class _ToolTipWrapperState extends State<ToolTipWrapper>

final defaultToolTipWidget = widget.container != null
? MouseRegion(
opaque: false,
cursor: widget.onTooltipTap == null
? MouseCursor.defer
: SystemMouseCursors.click,
Expand All @@ -187,6 +188,7 @@ class _ToolTipWrapperState extends State<ToolTipWrapper>
),
)
: MouseRegion(
opaque: false,
cursor: widget.onTooltipTap == null
? MouseCursor.defer
: SystemMouseCursors.click,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/widget/floating_action_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class FloatingActionWidget extends StatelessWidget {
bottom: bottom,
width: width,
height: height,
child: Material(color: Colors.transparent, child: child),
child: Material(type: MaterialType.transparency, color: Colors.transparent, child: child),
);
}
}
Loading