36 lines
847 B
Dart
36 lines
847 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class InvitationsPage extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(
|
|
'Invitations',
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
backgroundColor: Colors.white,
|
|
foregroundColor: Color(0xFF6A4C93),
|
|
elevation: 0,
|
|
bottom: PreferredSize(
|
|
preferredSize: Size.fromHeight(1),
|
|
child: Container(
|
|
height: 1,
|
|
color: Colors.grey[200],
|
|
),
|
|
),
|
|
),
|
|
body: Center(
|
|
child: Text(
|
|
'This is the Invitations Page',
|
|
style: TextStyle(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |