Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can retrieve an SVG image from a URL in Flutter by using the flutter_svg package. Here is an example code snippet:

  1. Add the flutter_svg package to your pubspec.yaml file:
dependencies:
  flutter:
    sdk: flutter
  flutter_svg: ^0.22.0
  1. Import the flutter_svg package:
import 'package:flutter_svg/flutter_svg.dart';
  1. Use the SvgPicture.network() widget to retrieve and display the SVG image:
SvgPicture.network(
  'https://example.com/image.svg',
  height: 100,
  width: 100,
),

This will retrieve the image from the URL https://example.com/image.svg and display it with a height and width of 100.