Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
deven98 committed Sep 18, 2024
1 parent 2d31293 commit db19d00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void main() {
child: StreamChannel(
channel: channel,
child: PopScope(
onPopInvoked: (bool didPop) async => false,
onPopInvokedWithResult: (bool didPop, res) async => false,
child: const Scaffold(
body: StreamGalleryFooter(
mediaAttachmentPackages: [],
Expand All @@ -94,7 +94,7 @@ void main() {
child: StreamChannel(
channel: channel,
child: PopScope(
onPopInvoked: (bool didPop) async => false,
onPopInvokedWithResult: (bool didPop, res) async => false,
child: const Scaffold(
body: StreamGalleryFooter(
mediaAttachmentPackages: [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void main() {
child: StreamChannel(
channel: channel,
child: PopScope(
onPopInvoked: (bool didPop) async => false,
onPopInvokedWithResult: (bool didPop, res) async => false,
child: Scaffold(
appBar: StreamGalleryHeader(
attachment: MockAttachment(),
Expand All @@ -95,7 +95,7 @@ void main() {
child: StreamChannel(
channel: channel,
child: PopScope(
onPopInvoked: (bool didPop) async => false,
onPopInvokedWithResult: (bool didPop, res) async => false,
child: Scaffold(
appBar: StreamGalleryHeader(
userName: 'User',
Expand Down

0 comments on commit db19d00

Please sign in to comment.