We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6db174 commit 8a90183Copy full SHA for 8a90183
lib/account/view/content_preferences_page.dart
@@ -0,0 +1,19 @@
1
+import 'package:flutter/material.dart';
2
+import 'package:ht_main/l10n/l10n.dart';
3
+
4
+/// {@template content_preferences_page}
5
+/// A placeholder page for managing user content preferences.
6
+/// {@endtemplate}
7
+class ContentPreferencesPage extends StatelessWidget {
8
+ /// {@macro content_preferences_page}
9
+ const ContentPreferencesPage({super.key});
10
11
+ @override
12
+ Widget build(BuildContext context) {
13
+ final l10n = context.l10n;
14
+ return Scaffold(
15
+ appBar: AppBar(title: Text(l10n.accountContentPreferencesTile)),
16
+ body: const Center(child: Text('CONTENT PREFERENCES PAGE (Placeholder)')),
17
+ );
18
+ }
19
+}
0 commit comments