KoheiKanagu

Results 16 comments of KoheiKanagu

@DhavalRKansara An example that can reproduce the problem is described below. This problem occurs in `showcaseview: ^1.1.8`. ```dart import 'package:flutter/material.dart'; import 'package:showcaseview/showcaseview.dart'; class Demo extends StatelessWidget { const Demo({ super.key,...

@DhavalRKansara An example that can reproduce the problem is described below. This problem occurs in `showcaseview: ^1.1.8`. ```dart import 'package:flutter/material.dart'; import 'package:showcaseview/showcaseview.dart'; class Demo extends StatelessWidget { const Demo({ super.key,...

@tnusraddinov Try specifying the GlobalKey. ```dart OrientationBuilder( builder: (_, __) => Echarts( key: GlobalObjectKey(MediaQuery.of(context).orientation), option: option, ), ); ```

A different token might be generated if the apk is signed by the Google PlayStore. https://github.com/firebase/flutterfire/discussions/7998#discussioncomment-2815263

I had the same problem but solved it. In my case, it was failing at `xcrun simctl terminate` when Integration Test terminates. The cause was that the BundleID was incorrect....

I have implemented a solution to this issue and submitted it as a pull request. #525 Please take a look when you have a chance.

I was able to generate it with `freezed: ^2.3.5` with no problems. The complete code for the DTO class is here. ```dart import 'package:freezed_annotation/freezed_annotation.dart'; part 'dto.freezed.dart'; part 'dto.g.dart'; @freezed class...

I think it's the extensions that are affecting it. If I specify something other than extensions in the only option, the error no longer occurs. Like this. ```sh firebase emulators:start...

device_preview has not been maintained for over a year. The development experience would be great if devtools supported similar functionality.

I created a project where the problem can be reproduced. https://github.com/KoheiKanagu/android_impeller Also attached is an `adb logcat` from the `flutter run` until the app crashes, and the `flutter daemon` output...