Skip to content

Commit a132634

Browse files
committed
feat: add PlaceholderCreatePage widget
1 parent 826cda4 commit a132634

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import 'package:flutter/material.dart';
2+
3+
/// {@template placeholder_create_page}
4+
/// A simple placeholder page for content creation forms.
5+
/// {@endtemplate}
6+
class PlaceholderCreatePage extends StatelessWidget {
7+
/// {@macro placeholder_create_page}
8+
const PlaceholderCreatePage({required this.title, super.key});
9+
10+
/// The title to display on the page.
11+
final String title;
12+
13+
@override
14+
Widget build(BuildContext context) {
15+
return Scaffold(
16+
appBar: AppBar(
17+
title: Text(title),
18+
),
19+
body: Center(
20+
child: Text('Form for "$title" will go here.'),
21+
),
22+
);
23+
}
24+
}

0 commit comments

Comments
 (0)