Skip to content

Commit 8a90183

Browse files
committed
feat(account): add content preferences page
1 parent b6db174 commit 8a90183

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)