mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 20:09:23 +00:00
temp disable exchange option for desktop
This commit is contained in:
parent
4238ce338a
commit
daa7708ad0
2 changed files with 27 additions and 26 deletions
|
@ -26,9 +26,10 @@ class _DesktopHomeViewState extends ConsumerState<DesktopHomeView> {
|
|||
onGenerateRoute: RouteGenerator.generateRoute,
|
||||
initialRoute: MyStackView.routeName,
|
||||
),
|
||||
Container(
|
||||
color: Colors.green,
|
||||
),
|
||||
// Container(
|
||||
// // todo: exchange
|
||||
// color: Colors.green,
|
||||
// ),
|
||||
Container(
|
||||
color: Colors.red,
|
||||
),
|
||||
|
|
|
@ -103,29 +103,29 @@ class _DesktopMenuState extends ConsumerState<DesktopMenu> {
|
|||
const SizedBox(
|
||||
height: 2,
|
||||
),
|
||||
DesktopMenuItem(
|
||||
icon: SvgPicture.asset(
|
||||
Assets.svg.exchangeDesktop,
|
||||
width: 20,
|
||||
height: 20,
|
||||
color: 1 == selectedMenuItem
|
||||
? Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.textDark
|
||||
: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.textDark
|
||||
.withOpacity(0.8),
|
||||
),
|
||||
label: "Exchange",
|
||||
value: 1,
|
||||
group: selectedMenuItem,
|
||||
onChanged: updateSelectedMenuItem,
|
||||
iconOnly: _width == minimizedWidth,
|
||||
),
|
||||
const SizedBox(
|
||||
height: 2,
|
||||
),
|
||||
// DesktopMenuItem(
|
||||
// icon: SvgPicture.asset(
|
||||
// Assets.svg.exchangeDesktop,
|
||||
// width: 20,
|
||||
// height: 20,
|
||||
// color: 1 == selectedMenuItem
|
||||
// ? Theme.of(context)
|
||||
// .extension<StackColors>()!
|
||||
// .textDark
|
||||
// : Theme.of(context)
|
||||
// .extension<StackColors>()!
|
||||
// .textDark
|
||||
// .withOpacity(0.8),
|
||||
// ),
|
||||
// label: "Exchange",
|
||||
// value: 1,
|
||||
// group: selectedMenuItem,
|
||||
// onChanged: updateSelectedMenuItem,
|
||||
// iconOnly: _width == minimizedWidth,
|
||||
// ),
|
||||
// const SizedBox(
|
||||
// height: 2,
|
||||
// ),
|
||||
DesktopMenuItem(
|
||||
icon: SvgPicture.asset(
|
||||
Assets.svg.bell,
|
||||
|
|
Loading…
Reference in a new issue