Tablet layout
This commit is contained in:
parent
e66ec03f42
commit
9629688f7d
|
|
@ -14,7 +14,7 @@ class SelectedIndicator extends StatelessWidget {
|
||||||
child: Row(
|
child: Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Container(
|
Container(
|
||||||
width: 1.5,
|
width: 3,
|
||||||
height: 48,
|
height: 48,
|
||||||
color: isSelected && !isMobile(context)
|
color: isSelected && !isMobile(context)
|
||||||
? Theme.of(context).accentColor
|
? Theme.of(context).accentColor
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ class MainScreen extends StatelessWidget {
|
||||||
return Row(
|
return Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
if (uiState.isMenuVisible) AppDrawerBuilder(),
|
if (uiState.isMenuVisible) AppDrawerBuilder(),
|
||||||
if (uiState.isMenuVisible) VerticalDivider(width: 1),
|
if (uiState.isMenuVisible) VerticalDivider(width: .5),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: IndexedStack(
|
child: IndexedStack(
|
||||||
index: mainIndex,
|
index: mainIndex,
|
||||||
|
|
@ -71,7 +71,7 @@ class EntityScreens extends StatelessWidget {
|
||||||
child: listWidget,
|
child: listWidget,
|
||||||
flex: 2,
|
flex: 2,
|
||||||
),
|
),
|
||||||
VerticalDivider(width: 1),
|
VerticalDivider(width: .5),
|
||||||
Expanded(
|
Expanded(
|
||||||
flex: 3,
|
flex: 3,
|
||||||
child: IndexedStack(
|
child: IndexedStack(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue