hide clear button
This commit is contained in:
parent
6b53dc170d
commit
a4b747a273
@ -419,7 +419,9 @@ class _MyHomePageState extends State<ListItemMenu> {
|
||||
readOnly: true,
|
||||
decoration: InputDecoration(
|
||||
border: OutlineInputBorder(),
|
||||
suffixIcon: IconButton(
|
||||
suffixIcon: datePicker.text.isEmpty
|
||||
? null
|
||||
: IconButton(
|
||||
icon: const Icon(Icons.clear),
|
||||
onPressed: () async {
|
||||
setState(() {
|
||||
@ -444,7 +446,9 @@ class _MyHomePageState extends State<ListItemMenu> {
|
||||
decoration: InputDecoration(
|
||||
labelText: 'Search by geographical zone',
|
||||
border: OutlineInputBorder(),
|
||||
suffixIcon: IconButton(
|
||||
suffixIcon: inputGeo.text.isEmpty
|
||||
? null
|
||||
: IconButton(
|
||||
icon: const Icon(Icons.clear),
|
||||
onPressed: () async {
|
||||
SharedPreferences prefs =
|
||||
@ -453,10 +457,12 @@ class _MyHomePageState extends State<ListItemMenu> {
|
||||
prefs.remove("city_long");
|
||||
setState(() {
|
||||
inputGeo.clear(); // Clear the text field
|
||||
geographicalZone = ''; // Reset the geographical zone state
|
||||
geographicalZone =
|
||||
''; // Reset the geographical zone state
|
||||
suggestions.clear();
|
||||
showArrow = true;
|
||||
showInputSearch = true; // Optionally clear suggestions
|
||||
showInputSearch =
|
||||
true; // Optionally clear suggestions
|
||||
/// Clear the filtered posts
|
||||
});
|
||||
fetchPostsByLocation();
|
||||
@ -537,7 +543,9 @@ class _MyHomePageState extends State<ListItemMenu> {
|
||||
decoration: InputDecoration(
|
||||
labelText: 'Search by item',
|
||||
border: OutlineInputBorder(),
|
||||
suffixIcon: IconButton(
|
||||
suffixIcon: inputItem.text.isEmpty
|
||||
? null
|
||||
: IconButton(
|
||||
icon: const Icon(Icons.clear),
|
||||
onPressed: () {
|
||||
setState(() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user