31 lines
743 B
Dart
31 lines
743 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../../core/constants/strings.dart';
|
|
import '../../../core/utils/size_config.dart';
|
|
|
|
class LoginTitle extends StatelessWidget {
|
|
const LoginTitle({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
children: [
|
|
Text(
|
|
AppStrings.signInTitle,
|
|
style: TextStyle(fontSize: 28.0.sp(), fontWeight: FontWeight.w700),
|
|
),
|
|
SizedBox(height: 8.0.h()),
|
|
Text(
|
|
AppStrings.signInSubtitle,
|
|
style: TextStyle(
|
|
fontSize: 14.0.sp(),
|
|
fontWeight: FontWeight.w400,
|
|
color: Colors.grey,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|