mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-10 21:04:53 +00:00
Add width constraints to desktop dashboard
This commit is contained in:
parent
02fe3c008f
commit
843db65603
1 changed files with 15 additions and 10 deletions
|
@ -109,12 +109,15 @@ class DesktopDashboardPage extends BasePage {
|
||||||
return Row(
|
return Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
Container(
|
||||||
flex: 3,
|
width: 400,
|
||||||
child: balancePage,
|
child: balancePage,
|
||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
flex: 5,
|
flex: 4,
|
||||||
|
child: Center(
|
||||||
|
child: ConstrainedBox(
|
||||||
|
constraints: BoxConstraints(maxWidth: 500),
|
||||||
child: Navigator(
|
child: Navigator(
|
||||||
key: desktopKey,
|
key: desktopKey,
|
||||||
initialRoute: Routes.desktop_actions,
|
initialRoute: Routes.desktop_actions,
|
||||||
|
@ -124,6 +127,8 @@ class DesktopDashboardPage extends BasePage {
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue