TF-852 Fix bottom overflow in SettingsFirstLevelView
This commit is contained in:
+4
-2
@@ -18,7 +18,8 @@ class SettingsFirstLevelView extends GetWidget<SettingsController> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Column(children: [
|
||||
return SingleChildScrollView(
|
||||
child: Column(children: [
|
||||
Obx(() => Padding(
|
||||
padding: SettingsUtils.getPaddingInFirstLevel(context, _responsiveUtils),
|
||||
child: UserInformationWidgetBuilder(
|
||||
@@ -109,6 +110,7 @@ class SettingsFirstLevelView extends GetWidget<SettingsController> {
|
||||
_imagePaths.icSignOut,
|
||||
controller.manageAccountDashboardController.logoutAction
|
||||
),
|
||||
]);
|
||||
]),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user