Mehmet Filiz

Results 10 comments of Mehmet Filiz

@alarkirikal If your svg links are externally sourced and no way to edit them you can edit the parser to skip the tag. ```dart if (event.name == 'style') { _discardSubtree();...

Yeah this is a problem because automation is the reason why we are here right. If I can find a way around this I'll share here.

I have this issue too. Does anybody have found a solution yet?

I had the same problem and solved it in manifest add ```xml ``` and before activity tag add ```xml ``` add inside application tag ```xml android:requestLegacyExternalStorage="true" ``` finally in the...

the source of the problem is here at version 2.13.2 https://pub.dev/packages/google_maps_flutter_ios/changelog to continue your life without waiting for them to fix it, use version 2.13.1 note: do not put "^"...

@BenjiFarquhar make sure you have done this ```sh flutter clean rm pubspec.lock rm -rf ./ios/.symlinks rm -rf ./ios/Pods rm ./ios/Podfile.lock flutter pub get cd ios ; pod repo update ;...

@BenjiFarquhar here is a code to change the "only" selected marker icon to a different one and if it exists, the previously selected marker icon back to its original form...

@BenjiFarquhar I suspect your versions may have something to do with this bug. my versions that do not have the problem as shown in the video: ``` Flutter 3.27.0 •...

@BenjiFarquhar also I needed to point out this code block is dead (never runs) ```dart if (selectedMarker?.markerId == markerId) { // Deselect marker if it's already selected setSelectedToNormal(); refresh(); return;...