File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 4.0.1] - (UnRelease)
2
+ - Fixed [ #493 ] ( https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/issues/493 ) - Fixed showCase.withWidget not showing issue
3
+
1
4
## [ 4.0.0]
2
5
- [ BREAKING] Fixed [ #457 ] ( https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/issues/457 ) - titleAlignment property does not work
3
6
- Feature [ #466 ] ( https://github.com/SimformSolutionsPvtLtd/flutter_showcaseview/pull/466 ) - Added Action widget for tooltip
Original file line number Diff line number Diff line change @@ -615,7 +615,7 @@ class _ShowcaseState extends State<Showcase> {
615
615
void _scrollIntoView () {
616
616
WidgetsBinding .instance.addPostFrameCallback ((timeStamp) async {
617
617
final keyContext = widget.key.currentContext;
618
- if (! mounted || (keyContext ? .mounted ?? true ) ) return ;
618
+ if (! mounted) return ;
619
619
setState (() => _isScrollRunning = true );
620
620
await Scrollable .ensureVisible (
621
621
keyContext! ,
Original file line number Diff line number Diff line change @@ -709,7 +709,7 @@ class _ToolTipWidgetState extends State<ToolTipWidget>
709
709
// when there is big action widget which make
710
710
// the tool tip to change it's position
711
711
Offstage (
712
- offstage: _tooltipActionSize == null ,
712
+ offstage: isSizeRecalculating ,
713
713
child: SizedBox (
714
714
width: tooltipWidth,
715
715
child: Column (
You can’t perform that action at this time.
0 commit comments