it's first time i use Flutter , so when i put any image from Network or from the Disk it's show me this Error (Eception : Invalid image Data)enter image description here
Asked
Active
Viewed 1,567 times
-2
-
Can you include code-snippet that will reproduce the error – Md. Yeasin Sheikh Aug 12 '22 at 15:15
1 Answers
0
I Solve the Problem >> you just need to make sure that you are writing the same name in the Folders and same extension
class Home extends StatelessWidget{
@override
Widget build(BuildContext context){
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('OKay Okay Let\'s go')),
body: Center(child: Container(child: Image(image: AssetImage('image/asi.JPEG'))))
)
);
}
}

Daniel Asi
- 16
- 1