Files
tm_app/lib/views/profile/profile_screen.dart
T
amirrezaghabeli 676124567f go router added
2025-08-05 08:23:05 +03:30

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),
),
),
);
}
}