From f0c49528096f1628f661282a890452a8e929c4e2 Mon Sep 17 00:00:00 2001 From: Godwin Asuquo Date: Wed, 15 Feb 2023 22:13:24 +0200 Subject: [PATCH] remove unnecessary code --- .../screens/dashboard/desktop_dashboard_page.dart | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/src/screens/dashboard/desktop_dashboard_page.dart b/lib/src/screens/dashboard/desktop_dashboard_page.dart index 685873c53..9caca8797 100644 --- a/lib/src/screens/dashboard/desktop_dashboard_page.dart +++ b/lib/src/screens/dashboard/desktop_dashboard_page.dart @@ -33,18 +33,6 @@ class DesktopDashboardPage extends BasePage { @override bool get resizeToAvoidBottomInset => false; - @override - Widget Function(BuildContext, Widget) get rootWrapper => - (BuildContext context, Widget scaffold) => Container( - decoration: BoxDecoration( - gradient: LinearGradient(colors: [ - Theme.of(context).accentColor, - Theme.of(context).scaffoldBackgroundColor, - Theme.of(context).primaryColor, - ], begin: Alignment.topRight, end: Alignment.bottomLeft)), - child: scaffold); - - final BalancePage balancePage; final DashboardViewModel walletViewModel; final WalletAddressListViewModel addressListViewModel;