diff --git a/crowdin.yml b/crowdin.yml deleted file mode 100644 index 55d687ec..00000000 --- a/crowdin.yml +++ /dev/null @@ -1,3 +0,0 @@ -files: - - source: /assets/translations/en.json - translation: /assets/translations/%two_letters_code%.json diff --git a/lib/pages/apps.dart b/lib/pages/apps.dart index 4612cdcd..37148246 100644 --- a/lib/pages/apps.dart +++ b/lib/pages/apps.dart @@ -1000,10 +1000,13 @@ class AppsPageState extends State { ), ), ), + ], + ), + ), ), ); - getCategoryCollapsibleTile(int index) { + Widget getCategoryCollapsibleTile(int index) { var tiles = listedApps .asMap() .entries @@ -1759,4 +1762,14 @@ class AppsFilter { includeNonInstalled == other.includeNonInstalled && settingsProvider.setEqual(categoryFilter, other.categoryFilter) && sourceFilter.trim() == other.sourceFilter.trim(); + } + + @override + int get hashCode => Object.hash( + idFilter.trim(), + includeUptodate, + includeNonInstalled, + Object.hashAll(categoryFilter), + sourceFilter.trim(), + ); }