forked from blackmann/locationpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_input.dart
92 lines (78 loc) · 2.35 KB
/
search_input.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import 'dart:async';
import 'package:flutter/material.dart';
/// Custom Search input field, showing the search and clear icons.
class SearchInput extends StatefulWidget {
final ValueChanged<String> onSearchInput;
final String hintText;
SearchInput(this.onSearchInput, this.hintText);
@override
State<StatefulWidget> createState() => SearchInputState();
}
class SearchInputState extends State<SearchInput> {
TextEditingController editController = TextEditingController();
Timer debouncer;
bool hasSearchEntry = false;
SearchInputState();
@override
void initState() {
super.initState();
this.editController.addListener(this.onSearchInputChange);
}
@override
void dispose() {
this.editController.removeListener(this.onSearchInputChange);
this.editController.dispose();
super.dispose();
}
void onSearchInputChange() {
if (this.editController.text.isEmpty) {
this.debouncer?.cancel();
widget.onSearchInput(this.editController.text);
return;
}
if (this.debouncer?.isActive ?? false) {
this.debouncer.cancel();
}
this.debouncer = Timer(Duration(milliseconds: 500), () {
widget.onSearchInput(this.editController.text);
});
}
@override
Widget build(BuildContext context) {
return Container(
padding: EdgeInsets.symmetric(horizontal: 8),
child: Row(
children: <Widget>[
Icon(Icons.search, color: Theme.of(context).textTheme.body1.color),
SizedBox(width: 8),
Expanded(
child: TextField(
decoration: InputDecoration(hintText: widget.hintText, border: InputBorder.none),
controller: this.editController,
onChanged: (value) {
setState(() {
this.hasSearchEntry = value.isNotEmpty;
});
},
),
),
SizedBox(width: 8),
if (this.hasSearchEntry)
GestureDetector(
child: Icon(Icons.clear),
onTap: () {
this.editController.clear();
setState(() {
this.hasSearchEntry = false;
});
},
),
],
),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(16),
color: Theme.of(context).canvasColor,
),
);
}
}