Display Network Image in Flutter
Flutter has an Image widget to display different types of images. To display images from the internet, the Image.network() function is used.
Syntax: Image.network (source_URL)
Properties Of Image Widget:
- height: This property takes in an integer value as the object. It decides the height of the image vertically.
- width: This property also takes in an Int value as the object to determine the width in pixels to be allocated to the image.
Follow the below steps to display the images from the internet in your Flutter application:
Step 1: Create a new flutter application in the required directory using the below command:
flutter create <app_name>
Step 2: Now, delete the code from main.dart file to add your own code.
Step 3: Now, use the below code in the main.dart file and change the parameter of Image.network function as per you need.
Dart
import 'package:flutter/material.dart' ; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Network Image' , theme: ThemeData( primarySwatch: Colors.blue, ), home: MyHomePage(), debugShowCheckedModeBanner: false , ); } } // setup a stateful widget class MyHomePage extends StatefulWidget { @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { @override Widget build(BuildContext context) { return Scaffold( // Design of the application appBar: AppBar( title:Text( "GeeksforGeeks" ), backgroundColor:Colors.green ), body: Padding( padding: const EdgeInsets.all(8.0), child: ListView( children:<Widget>[ Padding( padding: const EdgeInsets.all(8.0), // Image.network(src) child: Image.network( "https://images.pexels.com/photos/213780/pexels-photo-213780.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500" ), ), Padding( padding: const EdgeInsets.all(8.0), child: Image.network( "https://images.pexels.com/photos/2899097/pexels-photo-2899097.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500" ), ), Padding( padding: const EdgeInsets.all(8.0), child: Image.network( "https://images.pexels.com/photos/2820884/pexels-photo-2820884.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500" ), ) ] ), ), ); } } |
Output:
Code Explanation:
- Here we used the ListView to display images on the screen.
- In Image.network(src), we have given the network image path (src is image path).
- Finally, we used the width and height to resize the image.
Please Login to comment...