merged login and home

This commit is contained in:
amirrezaghabeli
2025-08-03 09:44:43 +03:30
parent 24e14b325a
commit 7aa082c6c8
40 changed files with 979 additions and 49 deletions
+13
View File
@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
import '../../core/constants/assets.dart';
import '../../size_config.dart';
class LoginLogo extends StatelessWidget {
const LoginLogo({super.key});
@override
Widget build(BuildContext context) {
return Image.asset(AssetsManager.logo, width: 190.0.w(), height: 88.0.h());
}
}