Skip to content
Merged
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
12 changes: 6 additions & 6 deletions src/content/docs/developer-tools/sdks/native/flutter-sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ KINDE_AUDIENCE=<your_kinde_audience>
```bash
KINDE_AUTH_DOMAIN=https://myapp.kinde.com
KINDE_AUTH_CLIENT_ID=clientid
KINDE_LOGIN_REDIRECT_URI=com.kinde.myapp://kinde_callback
KINDE_LOGOUT_REDIRECT_URI=com.kinde.myapp://kinde_logoutcallback
KINDE_LOGIN_REDIRECT_URI=myapp://kinde_callback
KINDE_LOGOUT_REDIRECT_URI=myapp://kinde_logoutcallback
KINDE_AUDIENCE=myapp.kinde.com/api
```

Expand Down Expand Up @@ -124,13 +124,13 @@ Specify the custom scheme similar to the following but replace `<your_custom_sc
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string><your_custom_scheme></string>
<string><your_custom_scheme>://</string>
</array>
</dict>
</array>
```

**Note:** `<your_custom_scheme>` has been defined previously as [`com.kinde.app`](http://com.kinde.app/) You can define your own custom scheme to correspond to the package name.
**Note:** `<your_custom_scheme>` has been defined previously as [`myapp`](http://com.kinde.app/) You can define your own custom scheme to correspond to the app name.

## Set callback URLs

Expand All @@ -146,8 +146,8 @@ Replace the values you see in `<code brackets>` with your own values.
- Allowed logout redirect URLs: `<your_custom_scheme>://kinde_logoutcallback`

```dart
loginRedirectUri: com.kinde.myapp://kinde_callback,
logoutRedirectUri: com.kinde.myapp://kinde_logoutcallback,
loginRedirectUri: myapp://kinde_callback,
logoutRedirectUri: myapp://kinde_logoutcallback,
```

5. Select **Save**.
Expand Down