Code of main.dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Working with Images'),
),
body: Center(
child: Column(
children: [
Image.network('https://nuv.ac.in/wp-content/uploads/new-logo.png', width: 400,height: 200),
const Image(image: AssetImage('assets/new-logo.png')),
Text(
'Welcome to NUV',
style: TextStyle(fontSize: 50.0),
)
],
),
),
),
);
}
}