This commit is contained in:
LavaDesu 2025-04-13 00:51:32 +10:00
commit aebc802b88
Signed by: cilly
GPG key ID: 6500251E087653C9
54 changed files with 1598 additions and 0 deletions

View file

@ -0,0 +1,5 @@
package moe.lava.banksia
import androidx.compose.ui.window.ComposeUIViewController
fun MainViewController() = ComposeUIViewController { App() }

View file

@ -0,0 +1,12 @@
package moe.lava.banksia.native.maps
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
@Composable
actual fun Maps(
modifier: Modifier,
markers: List<Marker>
) {
TODO("Not yet implemented")
}