31 lines
726 B
Dart
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,
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|