mirror of
https://github.com/timokz/flutter-vienna-hackathon-25.git
synced 2025-11-08 21:24:20 +01:00
18 lines
451 B
Dart
18 lines
451 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:wien_talks_flutter/get_location_widget.dart';
|
|
import 'package:wien_talks_flutter/widgets/screen_widget.dart';
|
|
|
|
class CreateEventScreen extends StatelessWidget {
|
|
const CreateEventScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ScreenWidget(
|
|
child: Column(
|
|
children: [
|
|
Text("hello"),
|
|
GetLocationWidget(),
|
|
],
|
|
));
|
|
}
|
|
}
|