won

translate route_management.md on korean

@@ -243,14 +243,14 @@ Get.toNamed("/profile/34954"); @@ -243,14 +243,14 @@ Get.toNamed("/profile/34954");
243 243
244 ```dart 244 ```dart
245 print(Get.parameters['user']); 245 print(Get.parameters['user']);
246 -// out: 34954 246 +// 출력: 34954
247 ``` 247 ```
248 248
249 -And now, all you need to do is use Get.toNamed() to navigate your named routes, without any context (you can call your routes directly from your BLoC or Controller class), and when your app is compiled to the web, your routes will appear in the url <3 249 +이제 Get.toNamed()를 사용하여 어떤 context도 없이 명명된 라우트를 탐색하고 (BLoC 또는 Controller 클래스로 부터 직접 라우트를 호출할 수 있음) 앱이 웹으로 컴파일되면 경로는 url에 표시됩니다. <3
250 250
251 ### 미들웨어 251 ### 미들웨어
252 252
253 -If you want listen Get events to trigger actions, you can to use routingCallback to it 253 +만약 GetX 이벤트를 받아서 행동을 트리거 하려면 routingCallback을 사용하면 가능합니다.
254 254
255 ```dart 255 ```dart
256 GetMaterialApp( 256 GetMaterialApp(
@@ -262,7 +262,7 @@ GetMaterialApp( @@ -262,7 +262,7 @@ GetMaterialApp(
262 ) 262 )
263 ``` 263 ```
264 264
265 -If you are not using GetMaterialApp, you can use the manual API to attach Middleware observer. 265 +GetMaterialApp을 사용하지 않는다면 수동 API를 사용해서 Middleware observer를 추가할 수 있습니다.
266 266
267 ```dart 267 ```dart
268 void main() { 268 void main() {
@@ -272,14 +272,14 @@ void main() { @@ -272,14 +272,14 @@ void main() {
272 initialRoute: "/", 272 initialRoute: "/",
273 navigatorKey: Get.key, 273 navigatorKey: Get.key,
274 navigatorObservers: [ 274 navigatorObservers: [
275 - GetObserver(MiddleWare.observer), // HERE !!! 275 + GetObserver(MiddleWare.observer), // 여기 !!!
276 ], 276 ],
277 ), 277 ),
278 ); 278 );
279 } 279 }
280 ``` 280 ```
281 281
282 -Create a MiddleWare class 282 +MiddleWare class 생성
283 283
284 ```dart 284 ```dart
285 class MiddleWare { 285 class MiddleWare {
@@ -296,7 +296,7 @@ class MiddleWare { @@ -296,7 +296,7 @@ class MiddleWare {
296 } 296 }
297 ``` 297 ```
298 298
299 -Now, use Get on your code: 299 +이제, 코드에서 Get을 사용하세요:
300 300
301 ```dart 301 ```dart
302 class First extends StatelessWidget { 302 class First extends StatelessWidget {