darshankawar

Results 1758 comments of darshankawar

> adding a Text widget in a Flutter module, hosting it remotely with CocoaPods, and integrating it via a Podfile into a native iOS project. Thanks for the update. I'll...

@WeirdHat A similar [issue](https://github.com/flutter/flutter/issues/127815) was fixed recently. I see that you are not on latest master or stable. Please switch to either and re-run your scenario to check if the...

Thanks for the update. Seeing the same behavior using above code sample on latest versions with and without Impeller. ``` stable : 3.24.5 master : 3.27.0-1.0.pre.628 ```

@Uni2K Tried your code sample and see below: code sample ``` import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp(...

With `flutter run -d chrome`: With `flutter run -d chrome --web-renderer html`: flutter doctor -v ``` [✓] Flutter (Channel master, 2.3.0-1.0.pre.143, on Mac OS X 10.15.4 19E2269 darwin-x64, locale en-GB)...

@dev3-tech Can you provide entire stacktrace ? Is it occuring in debug mode locally or in production ? > it is generate randomly in basic video_player implementation code Can you...

What other plugins are you using in your app ? Can you provide `pubspec.yaml` ? Could be that implementation of other dependencies could also trigger the error you are seeing....

These are all third party packages, so you will need to narrow down the code to reproducible sample to see which one could be causing it.

From above conversation, it seems the issue could most likely is in the code implementation rather than a bug in framework. Also, without a concrete reproducible code sample (without third...

Please provide us runnable code sample that is minimal and without third party implementations, because we tried the code sample you provided earlier, but couldn't run it properly.