wesal/lib/screens/pages/profile_page.dart

23 lines
522 B
Dart

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