mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-26 08:54:42 +01:00
Fix viewer buttons visible even when detail pane is opened
This commit is contained in:
parent
f8882de9d7
commit
0932a17d8e
1 changed files with 3 additions and 2 deletions
|
@ -130,8 +130,9 @@ class _ViewerState extends State<Viewer>
|
|||
extendBodyBehindAppBar: true,
|
||||
extendBody: true,
|
||||
appBar: _isShowAppBar ? _buildAppBar(context) : null,
|
||||
bottomNavigationBar:
|
||||
_isShowAppBar ? _buildBottomAppBar(context) : null,
|
||||
bottomNavigationBar: _isShowAppBar && !_isDetailPaneActive
|
||||
? _buildBottomAppBar(context)
|
||||
: null,
|
||||
body: Builder(
|
||||
builder: (context) => _buildContent(context, originalBrightness),
|
||||
),
|
||||
|
|
Loading…
Add table
Reference in a new issue