49 lines
1.2 KiB
Dart
Raw Normal View History

2025-07-31 19:25:45 +07:00
import 'package:enaklo_pos/core/extensions/build_context_ext.dart';
2025-07-30 22:38:44 +07:00
import 'package:flutter/material.dart';
import '../../../core/components/search_input.dart';
import '../../../core/constants/colors.dart';
class HomeTitle extends StatelessWidget {
final TextEditingController controller;
final Function(String value)? onChanged;
const HomeTitle({
super.key,
required this.controller,
this.onChanged,
});
@override
Widget build(BuildContext context) {
2025-07-31 19:25:45 +07:00
return Container(
height: context.deviceHeight * 0.1,
padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 12.0),
decoration: BoxDecoration(
2025-07-31 23:22:34 +07:00
color: AppColors.white,
2025-07-31 19:25:45 +07:00
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
2025-07-31 23:22:34 +07:00
const Text(
'DEFAULT OUTLET',
style: TextStyle(
color: AppColors.primary,
2025-08-02 11:00:30 +07:00
fontSize: 20,
2025-07-31 23:22:34 +07:00
fontWeight: FontWeight.w600,
),
2025-07-31 19:25:45 +07:00
),
SizedBox(
width: 300.0,
child: SearchInput(
controller: controller,
onChanged: onChanged,
hintText: 'Search..',
2025-07-30 22:38:44 +07:00
),
),
2025-07-31 19:25:45 +07:00
],
),
2025-07-30 22:38:44 +07:00
);
}
}