mirror of
https://github.com/venera-app/venera.git
synced 2025-09-27 15:57:25 +00:00
Use PageStorage to store state
This commit is contained in:
@@ -62,10 +62,18 @@ class _MainPageState extends State<MainPage> {
|
||||
}
|
||||
|
||||
final _pages = [
|
||||
const HomePage(),
|
||||
const FavoritesPage(),
|
||||
const ExplorePage(),
|
||||
const CategoriesPage(),
|
||||
const HomePage(
|
||||
key: PageStorageKey('home'),
|
||||
),
|
||||
const FavoritesPage(
|
||||
key: PageStorageKey('favorites'),
|
||||
),
|
||||
const ExplorePage(
|
||||
key: PageStorageKey('explore'),
|
||||
),
|
||||
const CategoriesPage(
|
||||
key: PageStorageKey('categories'),
|
||||
),
|
||||
];
|
||||
|
||||
var index = 0;
|
||||
|
Reference in New Issue
Block a user