search text field

This commit is contained in:
efrilm
2025-10-24 14:00:53 +07:00
parent 4dbdcadeaf
commit 13b1b6e6b8
3 changed files with 51 additions and 0 deletions
@@ -4,6 +4,7 @@ import 'package:flutter_bloc/flutter_bloc.dart';
import '../../../../../../application/auth/auth_bloc.dart';
import '../../../../../../common/extension/extension.dart';
import '../../../../../../common/theme/theme.dart';
import '../../../../../components/field/field.dart';
import '../../../../../components/spaces/space.dart';
class HomeTitle extends StatelessWidget {
@@ -44,6 +45,14 @@ class HomeTitle extends StatelessWidget {
);
},
),
SizedBox(
width: context.deviceWidth * 0.2,
child: SearchTextFormField(
controller: controller,
onChanged: onChanged,
hintText: 'Search..',
),
),
],
),
);