reverted unnecessary changes to fullscreen page structure
This commit is contained in:
parent
045d4e6ae3
commit
a83b7a186b
2 changed files with 7 additions and 4 deletions
|
@ -155,7 +155,6 @@ class SectionSliver extends StatelessWidget {
|
|||
collection: collection,
|
||||
initialUri: entry.uri,
|
||||
),
|
||||
fullscreenDialog: true,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
|
@ -28,9 +28,13 @@ class FullscreenPage extends AnimatedWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return FullscreenBody(
|
||||
collection: collection,
|
||||
initialUri: initialUri,
|
||||
return Scaffold(
|
||||
body: FullscreenBody(
|
||||
collection: collection,
|
||||
initialUri: initialUri,
|
||||
),
|
||||
backgroundColor: Colors.black,
|
||||
resizeToAvoidBottomInset: false,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue