Skip to content

Commit

Permalink
overflow fixed (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
GOUTHAM-2002 authored Sep 29, 2023
1 parent 3a0f3ef commit f79fa28
Showing 1 changed file with 50 additions and 48 deletions.
98 changes: 50 additions & 48 deletions lib/app/modules/settings/views/settings_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,54 +49,56 @@ class SettingsView extends GetView<SettingsController> {
},
),
),
body: Center(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 25.0),
child: Column(
children: [
WeatherApi(
controller: controller,
width: width,
height: height,
themeController: themeController,
),
const SizedBox(
height: 20,
),
GoogleSignIn(
controller: controller,
width: width,
height: height,
themeController: themeController,
),
const SizedBox(
height: 20,
),
EnableHapticFeedback(
height: height,
width: width,
controller: controller,
themeController: themeController,
),
const SizedBox(
height: 20,
),
EnableSortedAlarmList(
controller: controller,
height: height,
width: width,
themeController: themeController,
),
const SizedBox(
height: 20,
),
ThemeValueTile(
controller: controller,
height: height,
width: width,
themeController: themeController,
),
],
body: SingleChildScrollView(
child: Center(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 25.0),
child: Column(
children: [
WeatherApi(
controller: controller,
width: width,
height: height,
themeController: themeController,
),
const SizedBox(
height: 20,
),
GoogleSignIn(
controller: controller,
width: width,
height: height,
themeController: themeController,
),
const SizedBox(
height: 20,
),
EnableHapticFeedback(
height: height,
width: width,
controller: controller,
themeController: themeController,
),
const SizedBox(
height: 20,
),
EnableSortedAlarmList(
controller: controller,
height: height,
width: width,
themeController: themeController,
),
const SizedBox(
height: 20,
),
ThemeValueTile(
controller: controller,
height: height,
width: width,
themeController: themeController,
),
],
),
),
),
));
Expand Down

0 comments on commit f79fa28

Please sign in to comment.