Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Display Network Image in Flutter

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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>

create flutter app through cmd

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)             
  
            ),
            Padding(
              padding: const EdgeInsets.all(8.0),
            ),
            Padding(
              padding: const EdgeInsets.all(8.0),
            )
          ]
        ),
      ),
    );
  }
}

 

Output:

network image display in flutternetwork image display in flutter

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.

My Personal Notes arrow_drop_up
Last Updated : 09 Jul, 2021
Like Article
Save Article
Similar Reads