Questions tagged [image-flutter]
6 questions
2
votes
1 answer
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 that, because of backslash in path, I update one of…

sunny
- 2,670
- 5
- 24
- 39
1
vote
0 answers
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: 'Sign in with Google',
icon:…

aolsan
- 202
- 2
- 9
0
votes
1 answer
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 sides it should have grey blur background.
This…

Harshit Kumawat
- 19
- 1
0
votes
0 answers
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 errorWidget property of the CachedNetworkImage but…

Jonathan
- 106
- 1
- 8
0
votes
1 answer
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 can see in following code, I call the copyCrop…

Naufal Rajabi
- 334
- 4
- 13
0
votes
5 answers
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{
final String imageUrl;
final String mall;
…

Jesselyn Firesta
- 31
- 1
- 8