Skip to content

Commit 6afd8c9

Browse files
committed
feat(account): add saved headlines page
- Created basic page layout - Added AppBar with title - Displaying placeholder text
1 parent 8a90183 commit 6afd8c9

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 saved_headlines_page}
5+
/// A placeholder page for displaying user's saved headlines.
6+
/// {@endtemplate}
7+
class SavedHeadlinesPage extends StatelessWidget {
8+
/// {@macro saved_headlines_page}
9+
const SavedHeadlinesPage({super.key});
10+
11+
@override
12+
Widget build(BuildContext context) {
13+
final l10n = context.l10n;
14+
return Scaffold(
15+
appBar: AppBar(title: Text(l10n.accountSavedHeadlinesTile)),
16+
body: const Center(child: Text('SAVED HEADLINES PAGE (Placeholder)')),
17+
);
18+
}
19+
}

0 commit comments

Comments
 (0)