From d9ffece3528edfb43a7aa63bc7fcbda7932170c8 Mon Sep 17 00:00:00 2001 From: Peter Kyeyune Date: Thu, 19 Dec 2024 17:31:14 +0300 Subject: [PATCH] Comment out Air Quality alert code in analytics specifics --- .../widgets/analytics_specifics.dart | 78 +++++++++---------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/mobile-v3/lib/src/app/dashboard/widgets/analytics_specifics.dart b/mobile-v3/lib/src/app/dashboard/widgets/analytics_specifics.dart index 3133df989f..e2c8171b0d 100644 --- a/mobile-v3/lib/src/app/dashboard/widgets/analytics_specifics.dart +++ b/mobile-v3/lib/src/app/dashboard/widgets/analytics_specifics.dart @@ -142,45 +142,45 @@ class _AnalyticsSpecificsState extends State { ], ), ), - SizedBox(height: 8 + 4), - InkWell( - onTap: () => toggleContainer(), - child: AnimatedContainer( - duration: Duration(milliseconds: 300), - padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 8), - height: containerHeight, - color: Theme.of(context).highlightColor, - child: Container( - padding: const EdgeInsets.symmetric(horizontal: 16), - child: Column( - children: [ - Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - crossAxisAlignment: CrossAxisAlignment.center, - children: [ - Text( - "🚨 Air Quality Alerts", - style: TextStyle( - fontSize: 16, fontWeight: FontWeight.w600), - ), - Icon( - expanded - ? Icons.arrow_drop_up - : Icons.arrow_drop_down - ) - ], - ), - if (expanded) ...[ - SizedBox(height: 16), - Text(""), - ], - ], - ), - decoration: BoxDecoration( - color: Theme.of(context).scaffoldBackgroundColor, - borderRadius: BorderRadius.circular(44)), - )), - ) + // SizedBox(height: 8 + 4), + // InkWell( + // onTap: () => toggleContainer(), + // child: AnimatedContainer( + // duration: Duration(milliseconds: 300), + // padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 8), + // height: containerHeight, + // color: Theme.of(context).highlightColor, + // child: Container( + // padding: const EdgeInsets.symmetric(horizontal: 16), + // child: Column( + // children: [ + // Row( + // mainAxisAlignment: MainAxisAlignment.spaceBetween, + // crossAxisAlignment: CrossAxisAlignment.center, + // children: [ + // Text( + // "🚨 Air Quality Alerts", + // style: TextStyle( + // fontSize: 16, fontWeight: FontWeight.w600), + // ), + // Icon( + // expanded + // ? Icons.arrow_drop_up + // : Icons.arrow_drop_down + // ) + // ], + // ), + // if (expanded) ...[ + // SizedBox(height: 16), + // Text(""), + // ], + // ], + // ), + // decoration: BoxDecoration( + // color: Theme.of(context).scaffoldBackgroundColor, + // borderRadius: BorderRadius.circular(44)), + // )), + // ) ], ), );