Open In App

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:



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.




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:

Code Explanation:


Article Tags :