Skip to content

Commit

Permalink
[Fix] App Keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
O-h-y-o committed Jan 26, 2024
1 parent c4459b3 commit 63f07d4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/ko/posts/vue3+quasar/app-orientation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## 앱 화면 전환 제어하기

앱을 세로모드에서만 지원하고 싶을때가 있고 가로모드에서만 지원하고 싶을 때가 있습니다.

### 안드로이드

안드로이드의 경우 다음과 같이 해주세요.

```xml
<!-- AndroidManifest.xml -->

<activity
android:screenOrientation=""
>
</activity>
```

`landscape`는 가로모드, `portrait`는 세로모드 입니다. 아무것도 적지 않을시 가로, 세로 모두 지원합니다.

<br/> <br/>

### IOS

IOS의 경우, `info.plist` 에서 `Supported interface orientations` 에 원하는 지원 모드를 넣어주세요.

`Supported interface orientation (ipad)` 는 쓰여진 그대로 ipad 의 화면 전환을 제어하는 값을 넣는 곳입니다.

0 comments on commit 63f07d4

Please sign in to comment.