diff --git a/veggieseasons/lib/screens/search.dart b/veggieseasons/lib/screens/search.dart index 0da8e61da..43e3bb234 100644 --- a/veggieseasons/lib/screens/search.dart +++ b/veggieseasons/lib/screens/search.dart @@ -65,7 +65,9 @@ class _SearchScreenState extends State { itemBuilder: (context, i) { if (i == 0) { return Visibility( - //an invisible search box at the starting of the list so that overlay search box doesn't cover content + // This invisible and otherwise unnecessary search box is used to + // pad the list entries downward, so none will be underneath the + // real search box when the list is at its top scroll position. child: _createSearchBox(), visible: false, maintainSize: true,