Skip to content

Commit 3a8c112

Browse files
fix: 🐛 Flutter inspector makes screen grey (#353)
1 parent 908e5bb commit 3a8c112

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [2.0.2]
2+
- Fixed [#335](https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/issues/335) - Fixed flutter inspector makes screen grey
3+
14
## [2.0.1]
25
- Feature [#306](https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/pull/306) - Added support of manual vertical tooltip position.
36
- Fixed [#318](https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/issues/318) - Add support for enable/disable showcase globally.

lib/src/showcase.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ class _ShowcaseState extends State<Showcase> {
467467
// provided blur is less than 0.
468468
blur = kIsWeb && blur < 0 ? 0 : blur;
469469

470-
if (!_showShowCase) return const SizedBox.shrink();
470+
if (!_showShowCase) return const Offstage();
471471

472472
return Stack(
473473
children: [

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: showcaseview
22
description: A Flutter package to Showcase/Highlight widgets step by step.
3-
version: 2.0.1
3+
version: 2.0.2
44
homepage: https://github.com/simformsolutions/flutter_showcaseview
55
issue_tracker: https://github.com/simformsolutions/flutter_showcaseview/issues
66

0 commit comments

Comments
 (0)