Results 5 comments of Mike Klimek

An alternative workaround is to cast the `dataSource` to `dynamic`: ```dart MultiSelectFormField( dataSource: myItems .map((item) => ({'value': item.id, 'text': item.name})) .toList() // see https://github.com/cetorres/multiselect_formfield/issues/38 .cast(), ); ```

I think the issue is, that the find filter requires Jekyll 4.1.0, but GitHub Pages currently only supports 3.9.2, so the back arrow is always shown, but has no href...

Hi, this is also a usability issue, because it prevents users from clicking on markers they are standing directly in front of. `onMyLocationClick` is not nullable, so it always sets...

Here is a small workaround for returning different status codes with different requests: ```dart final adapter = DioAdapter(dio: dio); adapter.onGet('foo', (server) { // Reply with 401 on first response server.reply(401,...

Here is what worked for me: - in `tsconfig.json`: ```json { "compilerOptions": { "lib": [ "es6", "webworker", "dom" ] } } ``` - in the service worker: ```typescript import {...