6 questions
0
votes
1
answer
1k
views
Flutter: Image memory invalid image data after cropping
I'm working with Flutter camera package to take a picture from camera and now I'm trying to show an image that has been cropped from that taken picture. I use image package to crop the picture. As you ...
2
votes
0
answers
492
views
Can't test image widget from asset built with Image.asset() constructor in Flutter
I have an image in the sign in screen in my flutter app.
It's basically built as
return Scaffold(
home: Column(
children:[
//This is a custom button
SocialMediaSignInButton(
text: '...
0
votes
5
answers
1k
views
Flutter Image Asset cannot be shown ( image in class model )
I've made class model of places, and I want to show the logo of each place, I add the image location folder in class named place_model.dart and this is the code for place_model.dart :
class Place{
...
0
votes
1
answer
97
views
How to add background blur overlay to image?
I want to have a background overlay blur on a image if it is rectangular. Like if the image sides are of brown color it should have brown blur background to support its sides. Likewise if it has grey ...
2
votes
1
answer
503
views
show image from database that has backslash instead slash in path in flutter
I save my image in database with backslash (\) in address like this:
\image\carimage\2021_123test.jpg
Ok, when I want to show it in Image.network('imageurl') in flutter it is not possible to show ...
0
votes
0
answers
113
views
Why CachedNetworkImage when receiving wrong url by error?
I have to display images that are first entered by the user via a form in which he must enter the relative Url, so I can't know if he will enter a correct Url. I tried to handle the error with the ...