Adjust UI
This commit is contained in:
parent
e10a4efb3f
commit
5f0e453d80
|
|
@ -426,6 +426,10 @@ void viewEntityById({
|
||||||
store.dispatch(ClearPreviewStack());
|
store.dispatch(ClearPreviewStack());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (state.prefState.isDesktop && !state.prefState.isPreviewVisible) {
|
||||||
|
store.dispatch(TogglePreviewSidebar());
|
||||||
|
}
|
||||||
|
|
||||||
if (filterEntity != null &&
|
if (filterEntity != null &&
|
||||||
(uiState.filterEntityType != filterEntity.entityType ||
|
(uiState.filterEntityType != filterEntity.entityType ||
|
||||||
uiState.filterEntityId != filterEntity.id)) {
|
uiState.filterEntityId != filterEntity.id)) {
|
||||||
|
|
|
||||||
|
|
@ -694,7 +694,12 @@ class EntityScreens extends StatelessWidget {
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
if (isFullScreen) topFilterChild,
|
if (isFullScreen) topFilterChild,
|
||||||
Expanded(child: child),
|
Expanded(
|
||||||
|
child: AppBorder(
|
||||||
|
child: child,
|
||||||
|
isTop: isFullScreen,
|
||||||
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
isLeft: true,
|
isLeft: true,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue