Results 154 comments of Alexis Lecanu

I've also had a look, and it's quite complicated what's been put in place for just one order in a list. To correct the problem you'd have to revise a...

> @takahirom Hello, I've already done, but some error delays to complete this issue. > > I made baselineprofile module and make success to make baseline-prof.txt when variant is dev....

Is this becoming relevant with the new version taking a `withStreaming` ?

I tried to use it to initialize MapBox with the position by putting it in a LaunchEffect, but it didn't work because the LaunchEffect is executed before the map is...

``` val mapViewportState = rememberMapViewportState { setCameraOptions( cameraForCoordinates(points) ) } ``` I would like to be able to do this so that the camera is in the correct position from...

It works, but it's called after a MapEffect and therefore conflicts with camera animations. But that's more related to the fact that Mapbox doesn't provide animations for relive. In any...

I need to use a MapView to launch animations that aren't exposed by MapViewportState, and I've noticed that the camera isn't in the initial position I'd like if I use...

currently what works well ``` MapboxMap() { MapEffect(Unit) { mapView -> mapView.mapboxMap.setBounds( CameraBoundsOptions.Builder() .maxPitch(PITCH_MAX) .maxZoom(ZOOM_MAX) .build() ) val camera = mapView.mapboxMap.cameraForCoordinates( coordinates = path, camera = cameraOptions { pitch(PITCH_STARTED) padding(ROUTE_PADDING.toEdgeInsets(density...

I don't have the skills yet but I'm trying to understand how it works. If one day I can advance the technical subject I would be delighted.