Showing
1 changed file
with
5 additions
and
12 deletions
@@ -1009,22 +1009,15 @@ class OtherClass extends GetView<Controller> { | @@ -1009,22 +1009,15 @@ class OtherClass extends GetView<Controller> { | ||
1009 | 1009 | ||
1010 | #### GetResponsiveView | 1010 | #### GetResponsiveView |
1011 | 1011 | ||
1012 | -Extend this widget to build responsive view. | ||
1013 | -this widget contains the `screen` property that have all | ||
1014 | -information about the screen size and type. | 1012 | +ResponsiveView 를 빌드하려면 이 위젯을 확장하세요. 이 위젯에는 화면 크기 및 유형에 대한 모든 정보가 있는 화면 속성이 포함되어 있습니다. |
1015 | 1013 | ||
1016 | ##### 사용 방법 | 1014 | ##### 사용 방법 |
1017 | 1015 | ||
1018 | -You have two options to build it. | 1016 | +그것을 빌드하기 위한 두가지 옵션이 있습니다. |
1017 | +- `builder` method 를 사용하면 빌드 할 위젯을 반환합니다. | ||
1018 | +- `desktop`, `tablet`, `phone`, `watch` method를 사용하면 특정 메소드는 screen type 이 일치할때 빌드됩니다. Screen type이 [ScreenType.Tablet] 일때, tablet method 가 스며나옵니다. 참고: 만약 이 method 를 사용할 경우, `alwaysUseBuilder` 프로퍼티를 `false` 로 설정해주세요. | ||
1019 | 1019 | ||
1020 | -- with `builder` method you return the widget to build. | ||
1021 | -- with methods `desktop`, `tablet`,`phone`, `watch`. the specific | ||
1022 | - method will be built when the screen type matches the method | ||
1023 | - when the screen is [ScreenType.Tablet] the `tablet` method | ||
1024 | - will be exuded and so on. | ||
1025 | - **Note:** If you use this method please set the property `alwaysUseBuilder` to `false` | ||
1026 | - | ||
1027 | -With `settings` property you can set the width limit for the screen types. | 1020 | +`settings` 프로퍼티를 사용하면 screen types 를 위한 width limit 를 설정할 수 있습니다. |
1028 | 1021 | ||
1029 |  | 1022 |  |
1030 | Code to this screen | 1023 | Code to this screen |
-
Please register or login to post a comment