Venue-Page #1

Merged
maze6343 merged 3 commits from venue-page into master 2022-05-05 15:07:13 +02:00
Showing only changes of commit 298518ad7d - Show all commits

19
lib/venuePage.dart Normal file
View File

@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
Color _backgroundColor = const Color.fromARGB(255, 190, 146, 160);
class VenuePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('My Venue'),
),
body: const Center(
child: Text(
'Name of the Venue',
style: TextStyle(fontSize: 60),
)),
);
}
}