-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
324 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"language_settings": "Language Settings", | ||
"system_language": "System Language", | ||
"learning_language": "Learning Language" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"language_settings": "언어 설정", | ||
"system_language": "시스템 언어", | ||
"learning_language": "학습 언어" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,37 @@ | ||
// ignore_for_file: constant_identifier_names | ||
import 'package:earlips/views/home/home_screen.dart'; | ||
import 'package:earlips/views/profile/profile_account/profile_account_screen.dart'; | ||
import 'package:earlips/views/profile/profile_language_setting/profile_language_setting.dart'; | ||
import 'package:earlips/views/profile/profile_screen.dart'; | ||
import 'package:get/get.dart'; | ||
|
||
|
||
abstract class Routes { | ||
static const ROOT = '/'; | ||
static const HOME = '/home'; | ||
static const SETTING = '/setting'; | ||
static const ONBOARDING = '/onboarding'; | ||
static const PROFILE = '/profile'; | ||
static const PROFILE_ACCOUNT = '/profile/account'; | ||
static const PROFILE_LANGUAGE_SETTING = '/profile/language-setting'; | ||
static const STUDY = '/study'; | ||
|
||
} | ||
static final routes = [ | ||
GetPage( | ||
name: HOME, | ||
page: () => const HomeScreen(), | ||
), | ||
GetPage( | ||
name: PROFILE, | ||
page: () => const ProfileScreen(), | ||
), | ||
GetPage( | ||
name: PROFILE_ACCOUNT, | ||
page: () => const ProfileAccountScreen(), | ||
), | ||
GetPage( | ||
name: PROFILE_LANGUAGE_SETTING, | ||
page: () => const ProfileLanguageScreen(), | ||
), | ||
// 다른 라우트들도 이곳에 추가할 수 있습니다. | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.