Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/images/backend.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/cybersecurity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/dataEngineering.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/datascience.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/embeded.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/flutter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/frontend.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/ui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion lib/core/routing/app_router.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:go_router/go_router.dart';
import 'package:intermediate_final_project/core/routing/routes.dart';
import 'package:intermediate_final_project/features/login/presentation/views/track_view.dart';
import 'package:intermediate_final_project/features/nav_bar/presentation/manager/nav_bar_cubit/nav_bar_cubit.dart';
import 'package:intermediate_final_project/features/nav_bar/presentation/widgets/bottom_nav_bar.dart';

Expand All @@ -9,7 +10,7 @@ abstract class AppRouter {

static void initRouter() {
router = GoRouter(
initialLocation: Routes.navbar,
initialLocation: Routes.track,
routes: [
GoRoute(
path: Routes.navbar,
Expand All @@ -18,6 +19,10 @@ abstract class AppRouter {
child: CustomBottomNavBar(),
),
),
GoRoute(
path: Routes.track,
builder: (context, state) => const TrackLevelScreen(),
),
],
);
}
Expand Down
1 change: 1 addition & 0 deletions lib/core/routing/routes.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
class Routes {
static const String navbar = '/navbar';
static const String track='/track';
}
Loading