-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: desktop webview bridge PoC with ornament and gesture settings (#…
…203)
- Loading branch information
Showing
25 changed files
with
1,086 additions
and
240 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
demo-app/src/androidMain/kotlin/dev/sargunv/maplibrecompose/demoapp/platform.android.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package dev.sargunv.maplibrecompose.demoapp | ||
|
||
actual object Platform { | ||
actual val supportsBlending = true | ||
actual val supportsFps = true | ||
actual val supportsCamera = true | ||
actual val supportsLayers = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
demo-app/src/commonMain/kotlin/dev/sargunv/maplibrecompose/demoapp/platform.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package dev.sargunv.maplibrecompose.demoapp | ||
|
||
expect object Platform { | ||
val supportsBlending: Boolean | ||
val supportsFps: Boolean | ||
val supportsCamera: Boolean | ||
val supportsLayers: Boolean | ||
} |
8 changes: 8 additions & 0 deletions
8
demo-app/src/desktopMain/kotlin/dev/sargunv/maplibrecompose/demoapp/platform.desktop.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package dev.sargunv.maplibrecompose.demoapp | ||
|
||
actual object Platform { | ||
actual val supportsBlending = false | ||
actual val supportsFps = false | ||
actual val supportsCamera = false | ||
actual val supportsLayers = false | ||
} |
8 changes: 8 additions & 0 deletions
8
demo-app/src/iosMain/kotlin/dev/sargunv/maplibrecompose/demoapp/platform.ios.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package dev.sargunv.maplibrecompose.demoapp | ||
|
||
actual object Platform { | ||
actual val supportsBlending = true | ||
actual val supportsFps = true | ||
actual val supportsCamera = true | ||
actual val supportsLayers = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.