Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ app.onToolbarPlacementUpdated((options) => {
Changes the state of the app. This can be used to enable or disable the app programmatically, for example, when the user clicks on a button in the app's UI.

```ts title="src/my-app.js"
app.changeAppState({state: false});
app.toggleState({ state: false });
```

### `toggleNotification()`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ app.onToolbarPlacementUpdated((options) => {
앱의 상태를 변경합니다. 예를 들어 사용자가 앱 UI에서 버튼을 클릭할 때 프로그래밍 방식으로 앱을 활성화하거나 비활성화하는 데 사용할 수 있습니다.

```ts title="src/my-app.js"
app.changeAppState({state: false});
app.toggleState({ state: false });
```

### `toggleNotification()`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ app.onToolbarPlacementUpdated((options) => {
更改应用的状态。例如,当用户在应用的 UI 中点击按钮时,可以通过编程方式启用或禁用应用。

```ts title="src/my-app.js"
app.changeAppState({state: false});
app.toggleState({ state: false });
```

### `toggleNotification()`
Expand Down