Reputation: 45
No errors in the code and as far as I can see the pubspec.yaml file is functional, as it worked before.
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Column(
children: [
Card(
child: Image.asset('anyaparent.jpeg'),
),
],
),
),
),
);
Upvotes: 1
Views: 284
Reputation: 6022
Check your image path images/anyaparent.jpeg
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Column(
children: [
Card(
child: Image.asset('images/anyaparent.jpeg'),
),
],
),
),
),
);
Upvotes: 0