Flutter image.network() crash the apps - flutter

My flutter apps crash during development. It directly crash if I use this image.
My image that has error
Image.network(
'https://testpmcstorage.blob.core.windows.net/background-image/image7.jpeg',)

Related

Rendering a webview in flutter app is too slow and cause to crash

I render html in webview, and will to show it in an flutter app. When it first loads, there is no iframe. When the first iframe is created we have no problem. But when the second iframe is created, we get this error and it repeats per frame in framerate and the app crashes.
E/EGL_emulation( 6468): tid 6674: eglCreateSyncKHR(2212): error 0x3004 (EGL_BAD_ATTRIBUTE)
E/chromium( 6468): [ERROR:android_image_reader_utils.cc(19)] Failed to create android native fence sync object.
How to solve this in flutter? I dont have any problems with this webview in reactnative but in flutter it is too slow and then the app crashes.
Thank you

Flutter ios libCachedImage not showing

Image stored in local libcachedimage not showing on real iOS device, below is the path where image is stored.
/Users/user***/Library/Developer/CoreSimulator/Devices/B8056AB3-B020-4520-A44E-B3C6E1F4B239/data/Containers/Data/Application/4FCE98E8-BD21-4A35-A79E-0B08EE931BCC/Library/Caches/libCachedImageData/5fa3e7e0-77fa-11ed-a821-d7297da5f84d.jpg'
But it's working with iOS emulator not on real device.
Thanks.

Flutter overlay over other apps

I want to build a Flutter App that can show information in a modalBottomSheet, but outside of the App.
The App should run in the background and when I want it to show something, it should show a modalBottomSheet over the curently used App. It doesn't matter if the user is in a App or just the Homescreen, important is that the App runs from the background and can overlay other Apps.
You could use flutter_overlay_window. It can display your flutter app over other apps on the screen

Pushnotification image in ios shows flutter logo

I have implemeted flutter push notification in my app but i get flutter logo if i send image in push notification.. this issue is seen in ios only
Every thing is fine in android devices

pictureRecorder.endRecording creates "Minified:vs" instead of "CkPicture" on Flutter Web Mobile

I am using a PictureRecorder variable from the dart:ui package for creating an image with this line of code:
final _image =
await pictureRecorder.endRecording().toImage(size, (size * 1.1).toInt());
It works fine with Flutter Android, Flutter iOS and also Flutter Web. But I experienced a problem with Flutter Web, if it is opened with any mobile device (iOS and Android).
The problem is that endRecording doesn't create an "Instance of CkPicture". Instead it creates an "Instance of Minified:vs", whatever that means. But only on Flutter Web if you open with a mobile phone.
And ideas for a fix or a workaround?
Here's a complete example for this code for converting an image to a png
Round Image File