Skip to content

Commit

Permalink
search page ... fix ui bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
bladeofgod committed Oct 5, 2020
1 parent 190c48e commit 1175bbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/page/search/search_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class SearchPage extends PageState{
/// hot search
hotSearch(),
///show all
if(searchViewModel.moreThan10())
if(searchViewModel.moreThan10() && !searchViewModel.showAllHot)
showAll(),
getSizeBox(height: getWidthPx(40)),
///zone
Expand Down Expand Up @@ -165,7 +165,7 @@ class SearchPage extends PageState{
margin: EdgeInsets.only(left: getWidthPx(20)),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(getWidthPx(30)),
color: Color.fromRGBO(230, 230, 230, 1)
color: Color.fromRGBO(238, 238, 238, 1)
),
child: Text('$e',style: TextStyle(color: Colors.black,
fontSize: getSp(30)),),
Expand Down Expand Up @@ -210,7 +210,7 @@ class SearchPage extends PageState{
)
]
),
child: Icon(Icons.delete_forever,color: Colors.black,size: getWidthPx(30),),
child: Icon(Icons.delete_outline,color: Colors.grey,size: getWidthPx(50),),
),
),
),
Expand Down

0 comments on commit 1175bbd

Please sign in to comment.