From 6abfbe048797245a2c63d8e5b25e069dbf4831d0 Mon Sep 17 00:00:00 2001 From: Udhay-Adithya Date: Fri, 26 Sep 2025 00:38:05 +0530 Subject: [PATCH] chore: rename dashbot home page file --- lib/dashbot/core/routes/dashbot_router.dart | 2 +- .../home/view/pages/{home_page.dart => dashbot_home_page.dart} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/dashbot/features/home/view/pages/{home_page.dart => dashbot_home_page.dart} (100%) diff --git a/lib/dashbot/core/routes/dashbot_router.dart b/lib/dashbot/core/routes/dashbot_router.dart index 004c6e34..57c5e7f1 100644 --- a/lib/dashbot/core/routes/dashbot_router.dart +++ b/lib/dashbot/core/routes/dashbot_router.dart @@ -3,7 +3,7 @@ import '../../features/chat/view/pages/dashbot_chat_page.dart'; import '../constants/constants.dart'; import 'dashbot_routes.dart'; import '../common/pages/dashbot_default_page.dart'; -import '../../features/home/view/pages/home_page.dart'; +import '../../features/home/view/pages/dashbot_home_page.dart'; import 'package:flutter/material.dart'; Route? generateRoute(RouteSettings settings) { diff --git a/lib/dashbot/features/home/view/pages/home_page.dart b/lib/dashbot/features/home/view/pages/dashbot_home_page.dart similarity index 100% rename from lib/dashbot/features/home/view/pages/home_page.dart rename to lib/dashbot/features/home/view/pages/dashbot_home_page.dart