Integrate UserStateWrapper for user state management in group and home components; refactor profile and settings imports

This commit is contained in:
Van Leemput Dayron
2025-11-05 09:36:57 +01:00
parent 75c12e35a5
commit 5977f4d0da
4 changed files with 37 additions and 87 deletions

View File

@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
import 'settings_theme_content.dart';
import '../profile/profile_content.dart';
import 'profile/profile_content.dart';
class SettingsContent extends StatelessWidget {
const SettingsContent({super.key});
@@ -40,7 +40,9 @@ class SettingsContent extends StatelessWidget {
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const SettingsThemeContent()),
MaterialPageRoute(
builder: (context) => const SettingsThemeContent(),
),
);
},
),