4 questions
2
votes
0
answers
102
views
How do I deal with the issue of memory constantly running out, triggering lowmemorykiller and then forceclose?
I am currently developing a podcast-like application built with Flutter. I am using the just_audio library to play the audio.
When the app is opened, it works fine at first. (Plays one audio file, ...
0
votes
1
answer
55
views
Facing performance issue on Android In my Flutter app
Facing performance issue on Android
In my Flutter app, I'm displaying a lot of images in a scrollable view. On Android, the screen freezes for 7–8 seconds, sometimes crashes, and becomes unscrollable. ...
0
votes
1
answer
63
views
Flutter's CachedNetworkImage doesn't seem to clean up data from temporary storage
thanks for taking the time to help!
I am building an app that displays many images/GIFs. I have been using CachedNetworkImage to display these assets. I noticed today that my app cache on both iOS and ...
0
votes
1
answer
59
views
Flutter Image size independent of display size
I have following Image of specific dimensions:
SizedBox(
width: imageWidth,
height: imageHeight,
child: CachedNetworkImage(
imageUrl: images!.first.url,
fit: BoxFit.cover,
),
);
The ...