wesal/lib/screens/pages/invitations_page.dart

23 lines
534 B
Dart

import 'package:flutter/material.dart';
class InvitationsPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Invitations'),
backgroundColor: Color(0xFF6A4C93),
foregroundColor: Colors.white,
),
body: Center(
child: Text(
'This is the Invitations Page',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.w500,
),
),
),
);
}
}