Browse Source

Move general section below security

Neeraj Gupta 2 years ago
parent
commit
661e347a99
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/ui/settings_page.dart

+ 2 - 2
lib/ui/settings_page.dart

@@ -77,6 +77,8 @@ class SettingsPage extends StatelessWidget {
     contents.addAll([
       const SecuritySectionWidget(),
       sectionSpacing,
+      const GeneralSectionWidget(),
+      sectionSpacing,
     ]);
 
     if (Platform.isAndroid || kDebugMode) {
@@ -91,8 +93,6 @@ class SettingsPage extends StatelessWidget {
       sectionSpacing,
       const SocialSectionWidget(),
       sectionSpacing,
-      const GeneralSectionWidget(),
-      sectionSpacing,
       const AboutSectionWidget(),
     ]);