Skip to content

Commit

Permalink
fix the issue #486 (#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrAbdElHamed26 authored Mar 10, 2024
1 parent ec9faa5 commit f35c586
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions lib/app/modules/timer/views/timer_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,9 @@ class TimerView extends GetView<TimerController> {
body: Obx(
() => controller.isTimerRunning.value
? Column(
mainAxisAlignment: MainAxisAlignment.spaceAround,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
SizedBox(
height: height * 0.3,
),
Center(
child: Obx(
() {
Expand Down Expand Up @@ -128,15 +127,10 @@ class TimerView extends GetView<TimerController> {
},
),
),
SizedBox(
height: height * 0.15,
),
Obx(
() => Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
SizedBox(
width: width * 0.20,
),
FloatingActionButton.small(
heroTag: 'stop',
onPressed: () async {
Expand Down

0 comments on commit f35c586

Please sign in to comment.