Integrate SideBarView into MainLayout for Wider Screens

This commit is contained in:
hunteraraujo
2023-09-07 17:24:57 -07:00
parent 0e977e6818
commit 1320ce66d4
2 changed files with 17 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ class MyApp extends StatelessWidget {
ChangeNotifierProvider(
create: (context) => TaskViewModel(taskService)),
],
child: const MainLayout(),
child: MainLayout(),
),
);
}