Skip to content

Commit

Permalink
Add fix: Select all Top navigation bar corrected (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
SATVIKSH authored Dec 9, 2023
1 parent 221c393 commit fcb8077
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/app/modules/home/views/home_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ class HomeView extends GetView<HomeController> {
),
Container(
padding: EdgeInsets.symmetric(
horizontal: 25 *
horizontal: 15 *
controller
.scalingFactor.value,
),
Expand Down Expand Up @@ -534,7 +534,8 @@ class HomeView extends GetView<HomeController> {
.value = false;
controller.isAllAlarmsSelected
.value = false;
controller.numberOfAlarmsSelected
controller
.numberOfAlarmsSelected
.value = 0;
controller.selectedAlarmSet
.clear();
Expand All @@ -554,7 +555,8 @@ class HomeView extends GetView<HomeController> {
: kprimaryTextColor
.withOpacity(0.75),
iconSize: 27 *
controller.scalingFactor.value,
controller
.scalingFactor.value,
),
),
],
Expand Down

0 comments on commit fcb8077

Please sign in to comment.