Skip to content

Commit

Permalink
✨ Feat: 상수설정
Browse files Browse the repository at this point in the history
  • Loading branch information
seochan99 committed Feb 17, 2024
1 parent 71c6032 commit 8878c69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/utilities/app_routes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract class Routes {
static final routes = [
GetPage(
name: HOME,
page: () => const HomeScreen(),
page: () => HomeScreen(),
),
GetPage(
name: PROFILE,
Expand Down
4 changes: 2 additions & 2 deletions lib/views/root/root_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class RootScreen extends BaseScreen<RootViewModel> {
return Obx(
() => IndexedStack(
index: viewModel.selectedIndex,
children: const [
children: [
HomeScreen(),
ProfileScreen(),
const ProfileScreen(),
],
),
);
Expand Down

0 comments on commit 8878c69

Please sign in to comment.