go router added

This commit is contained in:
amirrezaghabeli
2025-08-05 08:23:05 +03:30
parent d5984b8bbf
commit 676124567f
14 changed files with 887 additions and 108 deletions
+25
View File
@@ -0,0 +1,25 @@
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),
),
),
);
}
}