fix: add search bar padding for maps

This commit is contained in:
LavaDesu 2025-04-29 15:47:37 +10:00
parent a16487a9a7
commit 34923ce743
Signed by: cilly
GPG key ID: 6500251E087653C9
4 changed files with 7 additions and 5 deletions

View file

@ -1,5 +1,6 @@
package moe.lava.banksia.native.maps
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.runtime.Composable
import androidx.compose.ui.ExperimentalComposeUiApi
@ -20,7 +21,7 @@ actual fun Maps(
polylines: List<Polyline>,
newCameraPosition: Pair<Point, Pair<Point, Point>?>?,
cameraPositionUpdated: () -> Unit,
extInsets: Int,
extInsets: WindowInsets,
) {
TODO("Not yet implemented")
}