Skip to content

Commit

Permalink
fix: 🐛 Flutter inspector makes screen grey (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
ujas-m-simformsolutions authored Mar 10, 2023
1 parent 908e5bb commit 3a8c112
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [2.0.2]
- Fixed [#335](https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/issues/335) - Fixed flutter inspector makes screen grey

## [2.0.1]
- Feature [#306](https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/pull/306) - Added support of manual vertical tooltip position.
- Fixed [#318](https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/issues/318) - Add support for enable/disable showcase globally.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/showcase.dart
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ class _ShowcaseState extends State<Showcase> {
// provided blur is less than 0.
blur = kIsWeb && blur < 0 ? 0 : blur;

if (!_showShowCase) return const SizedBox.shrink();
if (!_showShowCase) return const Offstage();

return Stack(
children: [
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: showcaseview
description: A Flutter package to Showcase/Highlight widgets step by step.
version: 2.0.1
version: 2.0.2
homepage: https://github.com/simformsolutions/flutter_showcaseview
issue_tracker: https://github.com/simformsolutions/flutter_showcaseview/issues

Expand Down

0 comments on commit 3a8c112

Please sign in to comment.