Commit 6278cde 1 parent 5db4f8d commit 6278cde Copy full SHA for 6278cde
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,7 @@ All examples can be found [here](https://github.com/Fintasys/emoji_picker_flutte
154
154
| backgroundColor | Background color of search view | const Color(0xFFEBEFF2) |
155
155
| buttonColor | Fill color of hide search view button | Colors.transparent |
156
156
| buttonIconColor | Icon color of hide search view button | Colors.black26 |
157
+ | hintText | Custom hint text | 'Search' |
157
158
| customSearchView | Customize search view widget | null |
158
159
159
160
## Backspace-Button
Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ class SearchViewConfig {
28
28
/// Icon color of hide search view button
29
29
final Color buttonIconColor;
30
30
31
+ /// Custom hint text
32
+ final String ? hintText;
33
+
31
34
/// Custom search bar
32
35
/// Hot reload is not supported
33
36
final SearchViewBuilder ? customSearchView;
34
37
35
- /// Custom hint text
36
- final String ? hintText;
37
-
38
38
@override
39
39
bool operator == (other) {
40
40
return (other is SearchViewConfig ) &&
You can’t perform that action at this time.
0 commit comments