Fabian Rosenthal
Fabian Rosenthal
We have this problem as well (also version 1.5.11 of the plugin). Is there a solution for that? (It seems like in the past the same was broken and then...
Thanks. I already downgraded to version 4.0.1 and can confirm with that version it works again. Looking forward to a proper new version then :-)
Hey @sofisl , sure. It creates a new task: **Edited afterwards**: Added import line ```ts import { CloudTasksClient } from "@google-cloud/tasks" const tasksClient = new CloudTasksClient({ projectId: process.env.GCP_TASKS_PROJECT_ID, credentials: {...
Hey @sofisl , ```ts import { CloudTasksClient } from "@google-cloud/tasks" ``` The application is a Next.js application. The package manager is pnpm and the build command `next build`.
Yes, that works without any issue. What's your error that you get? My domain config: - `www.preview.mydomain.app` redirects (308) to `preview.mydomain.app` - `*.preview.mydomain.app` is assigned to my branch `preview` -...
https://pub.dev/packages/sensors_plus/ It's maintained by fluttercommunity.dev nice. Looks pretty good. If someone is interested in creating a PR I would accept it.
Dear @Michael-Eliosov not the zooming but the rotation is the problem here. That was recently added to flutter_map. As a workaround you can use disable it: ``` options: MapOptions( plugins:...
Let's keep it open because the issue still exists and the hint above is just a workaround.
Dear @hpulst most likely you do zooming and rotation. The zooming works. Please see https://github.com/Xennis/flutter_map_location/issues/75#issuecomment-864374904 to disable the rotation. If you still think zooming is broken please open a new...
For people who stumble over this too: How I solved it: 1) Use the Mapbox controller to enable the user location (with `MapboxMap _mapboxMap`): ```dart await _mapboxMap.location.updateSettings(LocationComponentSettings( enabled: true, pulsingEnabled:...