maRci002

Results 79 comments of maRci002

It seems flutter/engine#34085 PR did fix the issue it is also available in Flutter framework since #113652 is merged. Earliest prebuilt Beta SDK version that supports it is [3.6.0-0.1.pre](https://github.com/flutter/flutter/releases/tag/3.6.0-0.1.pre).

FYI: Flutter 3.7.0 Stable now handles `TextPainter.didExceedMaxLines` properly both `html` / `canvasKit` renderer.

@mdebbar This isn't a Chrome bug, it's rather a [feature](https://groups.google.com/a/chromium.org/g/blink-dev/c/T8d4_BRb2xQ/m/WSdOiOFcBAAJ). > Some pages makes it difficult or impossible for the user to go back to the page they came from...

Can you check if both renderer's fail? `flutter run -d chrome --web-renderer html` `flutter run -d chrome --web-renderer canvaskit`

Can you check [network calls](https://developer.chrome.com/docs/devtools/network/) (hit `F12` as soon as chrome window opens) whether image loads properly (asset images loads via `XMLHttpRequest`)

It seems the image takes the space up but not showing (might be codec problem) you can confirm it with Inspect Tool ( _note: [desktop apps by default will use...

If you look at the code then you can see `Push page 2` will use `Router.neglect` instead of `Go to page 2` ```dart Column( mainAxisAlignment: MainAxisAlignment.center, children: [ ElevatedButton( onPressed:...

Oh I see you are right. I am not a `GoRouter` expert since I'm using vanilla `Router` and live with it's own hacks.

This happens when `HtmlElementView` is transformed (`video_player` uses it under hood) #126754

https://pub.dev/packages/in_app_purchase#completing-a-purchase > **Completing a purchase** [#](https://pub.dev/packages/in_app_purchase#completing-a-purchase) > The InAppPurchase.purchaseStream will send purchase updates after initiating the purchase flow using InAppPurchase.buyConsumable or InAppPurchase.buyNonConsumable. After verifying the purchase receipt and the delivering...