-
-
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: implement some desktop features
- Loading branch information
Showing
25 changed files
with
912 additions
and
245 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
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,6 @@ | ||
package dev.sargunv.maplibrecompose.demoapp | ||
|
||
actual object Platform { | ||
actual val supportsBlending = true | ||
actual val supportsFps = 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
6 changes: 6 additions & 0 deletions
6
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,6 @@ | ||
package dev.sargunv.maplibrecompose.demoapp | ||
|
||
expect object Platform { | ||
val supportsBlending: Boolean | ||
val supportsFps: Boolean | ||
} |
6 changes: 6 additions & 0 deletions
6
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,6 @@ | ||
package dev.sargunv.maplibrecompose.demoapp | ||
|
||
actual object Platform { | ||
actual val supportsBlending = false | ||
actual val supportsFps = false | ||
} |
6 changes: 6 additions & 0 deletions
6
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,6 @@ | ||
package dev.sargunv.maplibrecompose.demoapp | ||
|
||
actual object Platform { | ||
actual val supportsBlending = true | ||
actual val supportsFps = 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
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
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
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ kotlin { | |
|
||
useEsModules() | ||
binaries.executable() | ||
generateTypeScriptDefinitions() | ||
} | ||
|
||
sourceSets { | ||
|
Oops, something went wrong.