26 lines
603 B
Dart
26 lines
603 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../core/constants/colors.dart';
|
|
|
|
class ProfileScreen extends StatelessWidget {
|
|
const ProfileScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: AppColors.backgroundColor,
|
|
appBar: AppBar(
|
|
title: const Text('Profile'),
|
|
backgroundColor: AppColors.grey10,
|
|
elevation: 0,
|
|
),
|
|
body: const Center(
|
|
child: Text(
|
|
'Profile Screen',
|
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|