23 lines
472 B
Dart
23 lines
472 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AddEventScreen extends StatefulWidget {
|
|
const AddEventScreen({super.key});
|
|
|
|
@override
|
|
State<AddEventScreen> createState() => _AddEventScreenState();
|
|
}
|
|
|
|
class _AddEventScreenState extends State<AddEventScreen> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text("Event Form"),
|
|
),
|
|
body: Column(
|
|
children: [],
|
|
),
|
|
);
|
|
}
|
|
}
|