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 826cda4 commit a132634Copy full SHA for a132634
lib/shared/widgets/placeholder_create_page.dart
@@ -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