radar page bug fixes

This commit is contained in:
MohammadTaha Basiri 2022-02-11 20:09:54 +03:30
parent 5f971f4ae5
commit 6e1b5179a9
2 changed files with 4 additions and 2 deletions

View File

@ -155,7 +155,9 @@ class _RadarState extends State<Radar> {
), ),
if (state.appState != AppState.failed) CategoriesRow1(), if (state.appState != AppState.failed) CategoriesRow1(),
if (state.appState != AppState.failed) CategoriesRow2(), if (state.appState != AppState.failed) CategoriesRow2(),
if (state.appState != AppState.failed && !state.searching) if (state.appState != AppState.failed &&
!state.searching &&
!state.filtering)
CategoriesList(), CategoriesList(),
], ],
), ),

View File

@ -38,7 +38,7 @@ class RadarState extends CoreProvier {
lastSearch = ''; lastSearch = '';
isScrolled = false; isScrolled = false;
if (!isInit) { if (!isInit) {
notifyListeners(); getRadarOverviewDatas(page: 1);
} }
} }