DiscoverModule/lib/contacts_module/ui_screen/add_event/add_event.dart

23 lines
472 B
Dart
Raw Normal View History

2024-05-20 10:29:02 +00:00
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: [],
),
);
}
}