diff --git a/lib/app/modules/stopwatch/views/stopwatch_view.dart b/lib/app/modules/stopwatch/views/stopwatch_view.dart index d2354297..b0c893f3 100644 --- a/lib/app/modules/stopwatch/views/stopwatch_view.dart +++ b/lib/app/modules/stopwatch/views/stopwatch_view.dart @@ -53,9 +53,7 @@ class StopwatchView extends GetView { mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.start, children: [ - SizedBox( - height: 55, - width: 70, + Expanded( child: Center( child: Text( controller.result.split(':')[0], @@ -73,9 +71,7 @@ class StopwatchView extends GetView { fontWeight: FontWeight.bold, ), ), - SizedBox( - height: 55, - width: 70, + Expanded( child: Center( child: Text( controller.result.split(':')[1], @@ -93,9 +89,7 @@ class StopwatchView extends GetView { fontWeight: FontWeight.bold, ), ), - SizedBox( - height: 55, - width: 70, + Expanded( child: Center( child: Text( controller.result.split(':')[2], diff --git a/lib/app/modules/timer/views/timer_view.dart b/lib/app/modules/timer/views/timer_view.dart index 2857dd80..065dd95c 100644 --- a/lib/app/modules/timer/views/timer_view.dart +++ b/lib/app/modules/timer/views/timer_view.dart @@ -73,9 +73,7 @@ class TimerView extends GetView { mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.start, children: [ - SizedBox( - height: 55, - width: 70, + Expanded( child: Center( child: Text( '$hours', @@ -93,9 +91,7 @@ class TimerView extends GetView { fontWeight: FontWeight.bold, ), ), - SizedBox( - height: 55, - width: 70, + Expanded( child: Center( child: Text( '$minutes', @@ -113,9 +109,7 @@ class TimerView extends GetView { fontWeight: FontWeight.bold, ), ), - SizedBox( - height: 55, - width: 70, + Expanded( child: Center( child: Text( '$seconds',