26 lines
594 B
Dart
26 lines
594 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lucide_icons/lucide_icons.dart';
|
|
|
|
class SearchBarWidget extends StatelessWidget {
|
|
const SearchBarWidget({
|
|
super.key,
|
|
required this.hintText,
|
|
required this.onChanged,
|
|
});
|
|
|
|
final String hintText;
|
|
final ValueChanged<String> onChanged;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TextField(
|
|
onChanged: onChanged,
|
|
textInputAction: TextInputAction.search,
|
|
decoration: InputDecoration(
|
|
hintText: hintText,
|
|
prefixIcon: const Icon(LucideIcons.search),
|
|
),
|
|
);
|
|
}
|
|
}
|