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
+30
View File
@@ -0,0 +1,30 @@
import 'package:flutter/material.dart';
import '../../core/constants/texts.dart';
import '../../size_config.dart';
class LoginTitle extends StatelessWidget {
const LoginTitle({super.key});
@override
Widget build(BuildContext context) {
return Column(
children: [
Text(
TextManager.signInTitle,
style: TextStyle(fontSize: 28.0.sp(), fontWeight: FontWeight.w700),
),
SizedBox(height: 8.0.h()),
Text(
TextManager.signInSubtitle,
style: TextStyle(
fontSize: 14.0.sp(),
fontWeight: FontWeight.w400,
color: Colors.grey,
),
textAlign: TextAlign.center,
),
],
);
}
}