removed unnecessary * 1 calculation of height.

This commit is contained in:
Faris Armoush
2025-05-22 15:57:03 +03:00
parent 8c53d5322a
commit 5b13962d41

View File

@ -32,7 +32,7 @@ class AirQualityView extends StatelessWidget {
return SingleChildScrollView( return SingleChildScrollView(
child: Container( child: Container(
padding: _padding, padding: _padding,
height: height * 1, height: height,
child: const Column( child: const Column(
children: [ children: [
Expanded( Expanded(