remove body border

This commit is contained in:
2025-05-29 15:05:53 +02:00
parent 80d7ae1cba
commit c9a99e6191
2 changed files with 5 additions and 2 deletions

View File

@@ -253,7 +253,7 @@ class _MihPersonalProfileState extends State<MihPersonalProfile> {
@override
Widget build(BuildContext context) {
return MihPackageToolBody(
borderOn: true,
borderOn: false,
bodyItem: getBody(),
);
}

View File

@@ -22,7 +22,10 @@ class MihPersonalSettings extends StatefulWidget {
class _MihPersonalSettingsState extends State<MihPersonalSettings> {
@override
Widget build(BuildContext context) {
return MihPackageToolBody(borderOn: true, bodyItem: getBody());
return MihPackageToolBody(
borderOn: false,
bodyItem: getBody(),
);
}
void deleteAccountPopUp(BuildContext ctxtd) {