wesal/lib/screens/pages/profile_page.dart
2025-07-17 08:28:11 +03:00

36 lines
835 B
Dart

import 'package:flutter/material.dart';
class ProfilePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
'Profile',
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 Profile Page',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.w500,
),
),
),
);
}
}