use bottom sheets instead of dialogs

This commit is contained in:
Fabian Freund
2026-01-29 18:24:35 +01:00
parent 1e9ecb40ba
commit c9fdb6b768
10 changed files with 295 additions and 166 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ class SelectFeedDialogRoute extends GoRouteData with $SelectFeedDialogRoute {
),
);
return DialogPage(builder: (_) => SelectFeedDialog(feedUris: feedUris));
return BottomSheetPage(builder: (_) => SelectFeedDialog(feedUris: feedUris));
}
}