Files
tm_app/lib/views/widget/login_title.dart
T
2025-08-03 09:44:43 +03:30

31 lines
726 B
Dart

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