-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1885 from KRTirtho/dev
chore: release v3.8.1
- Loading branch information
Showing
88 changed files
with
1,190 additions
and
768 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
import 'dart:io'; | ||
|
||
import 'package:flutter/material.dart'; | ||
|
||
/// A temporary workaround for [WillPopScope] and [PopScope] not working in GoRouter | ||
/// https://github.com/flutter/flutter/issues/140869#issuecomment-2247181468 | ||
class AppPopScope extends StatefulWidget { | ||
final Widget child; | ||
|
||
final PopInvokedCallback? onPopInvoked; | ||
|
||
final bool canPop; | ||
|
||
const AppPopScope({ | ||
super.key, | ||
required this.child, | ||
this.canPop = true, | ||
this.onPopInvoked, | ||
}); | ||
|
||
@override | ||
State<AppPopScope> createState() => _AppPopScopeState(); | ||
} | ||
|
||
class _AppPopScopeState extends State<AppPopScope> { | ||
final bool _enable = Platform.isAndroid; | ||
ModalRoute? _route; | ||
BackButtonDispatcher? _parentBackBtnDispatcher; | ||
ChildBackButtonDispatcher? _backBtnDispatcher; | ||
|
||
@override | ||
void didChangeDependencies() { | ||
super.didChangeDependencies(); | ||
_route = ModalRoute.of(context); | ||
_updateBackButtonDispatcher(); | ||
} | ||
|
||
@override | ||
void activate() { | ||
super.activate(); | ||
_updateBackButtonDispatcher(); | ||
} | ||
|
||
@override | ||
void deactivate() { | ||
super.deactivate(); | ||
_disposeBackBtnDispatcher(); | ||
} | ||
|
||
@override | ||
void dispose() { | ||
_disposeBackBtnDispatcher(); | ||
super.dispose(); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return PopScope( | ||
canPop: widget.canPop, | ||
onPopInvoked: widget.onPopInvoked, | ||
child: widget.child, | ||
); | ||
} | ||
|
||
void _updateBackButtonDispatcher() { | ||
if (!_enable) return; | ||
|
||
var dispatcher = Router.maybeOf(context)?.backButtonDispatcher; | ||
if (dispatcher != _parentBackBtnDispatcher) { | ||
_disposeBackBtnDispatcher(); | ||
_parentBackBtnDispatcher = dispatcher; | ||
if (dispatcher is BackButtonDispatcher && | ||
dispatcher is! ChildBackButtonDispatcher) { | ||
dispatcher = dispatcher.createChildBackButtonDispatcher(); | ||
} | ||
_backBtnDispatcher = dispatcher as ChildBackButtonDispatcher; | ||
} | ||
_backBtnDispatcher?.removeCallback(_handleBackButton); | ||
_backBtnDispatcher?.addCallback(_handleBackButton); | ||
_backBtnDispatcher?.takePriority(); | ||
} | ||
|
||
void _disposeBackBtnDispatcher() { | ||
_backBtnDispatcher?.removeCallback(_handleBackButton); | ||
if (_backBtnDispatcher is ChildBackButtonDispatcher) { | ||
final child = _backBtnDispatcher as ChildBackButtonDispatcher; | ||
_parentBackBtnDispatcher?.forget(child); | ||
} | ||
_backBtnDispatcher = null; | ||
_parentBackBtnDispatcher = null; | ||
} | ||
|
||
bool get _onlyRoute => _route != null && _route!.isFirst && _route!.isCurrent; | ||
|
||
Future<bool> _handleBackButton() async { | ||
if (_onlyRoute) { | ||
widget.onPopInvoked?.call(widget.canPop); | ||
if (!widget.canPop) { | ||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.