Venue-Page #1
19
lib/venuePage.dart
Normal file
19
lib/venuePage.dart
Normal 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),
|
||||
)),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user