102 lines
3.1 KiB
Dart
102 lines
3.1 KiB
Dart
/// Checkout Text Field Widget
|
|
///
|
|
/// Reusable text field for checkout forms.
|
|
library;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:worker/core/constants/ui_constants.dart';
|
|
import 'package:worker/core/theme/colors.dart';
|
|
|
|
/// Checkout Text Field
|
|
///
|
|
/// Styled text field with label, validation, and optional features.
|
|
class CheckoutTextField extends StatelessWidget {
|
|
final String label;
|
|
final TextEditingController controller;
|
|
final bool required;
|
|
final String? hintText;
|
|
final int maxLines;
|
|
final TextInputType? keyboardType;
|
|
final String? Function(String?)? validator;
|
|
|
|
const CheckoutTextField({
|
|
super.key,
|
|
required this.label,
|
|
required this.controller,
|
|
required this.required,
|
|
this.hintText,
|
|
this.maxLines = 1,
|
|
this.keyboardType,
|
|
this.validator,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
RichText(
|
|
text: TextSpan(
|
|
text: label,
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w500,
|
|
color: Color(0xFF1E293B),
|
|
),
|
|
children: [
|
|
if (required)
|
|
const TextSpan(
|
|
text: ' *',
|
|
style: TextStyle(color: AppColors.danger),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(height: 8),
|
|
TextFormField(
|
|
controller: controller,
|
|
maxLines: maxLines,
|
|
keyboardType: keyboardType,
|
|
validator: validator,
|
|
decoration: InputDecoration(
|
|
hintText: hintText ?? 'Nhập $label',
|
|
hintStyle: TextStyle(
|
|
color: AppColors.grey500.withValues(alpha: 0.6),
|
|
fontSize: 14,
|
|
),
|
|
filled: true,
|
|
fillColor: const Color(0xFFF8FAFC),
|
|
contentPadding: const EdgeInsets.symmetric(
|
|
horizontal: 16,
|
|
vertical: 12,
|
|
),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(AppRadius.input),
|
|
borderSide: const BorderSide(color: Color(0xFFE2E8F0)),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(AppRadius.input),
|
|
borderSide: const BorderSide(color: Color(0xFFE2E8F0)),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(AppRadius.input),
|
|
borderSide: const BorderSide(
|
|
color: AppColors.primaryBlue,
|
|
width: 2,
|
|
),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(AppRadius.input),
|
|
borderSide: const BorderSide(color: AppColors.danger),
|
|
),
|
|
focusedErrorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(AppRadius.input),
|
|
borderSide: const BorderSide(color: AppColors.danger, width: 2),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|