Skip to content

Commit

Permalink
Merge pull request #2359 from airqo-platform/staging
Browse files Browse the repository at this point in the history
move to production
  • Loading branch information
Baalmart authored Dec 19, 2024
2 parents 0962464 + eaa4b31 commit 2e8a128
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions mobile-v3/lib/src/app/dashboard/widgets/analytics_specifics.dart
Original file line number Diff line number Diff line change
Expand Up @@ -142,45 +142,45 @@ class _AnalyticsSpecificsState extends State<AnalyticsSpecifics> {
],
),
),
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)),
// )),
// )
],
),
);
Expand Down

0 comments on commit 2e8a128

Please sign in to comment.