Issue
The NetworkImage
widget is not displayed in the app.
Solution
The issue arises due to an incorrect URL in the NetworkImage
widget. To resolve the issue, ensure the URL is valid in the NetworkImage
widget.
import 'package:flutter/material.dart';
import 'package:flutter/src/widgets/basic.dart';
void main() {
runApp(
MaterialApp(
home: Scaffold(
backgroundColor: Colors.blueGrey,
appBar: AppBar(
backgroundColor: Colors.blueGrey[900],
title: Text("I AM RICH"),
),
body: Center(
child:Image(
image: NetworkImage('INSERT VALID URL HERE'),
),
),
),
debugShowCheckedModeBanner: false,
)
);
}