flutter_svg_with_style_tag 0.0.4 copy "flutter_svg_with_style_tag: ^0.0.4" to clipboard
flutter_svg_with_style_tag: ^0.0.4 copied to clipboard

flutter load svg with support style tag.

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_svg_with_style_tag/flutter_svg_with_style_tag.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children:const <Widget>[
            MahanSinaSVG(
              stringSvgUrl: 'https://cafearz.com/assets/images/services/S/USDT.svg',
              width: 100,
              height: 100,
              fit: BoxFit.cover,
            ),
          ],
        ),
      ),
    );
  }
}
4
likes
110
pub points
31%
popularity

Publisher

unverified uploader

flutter load svg with support style tag.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_svg, http, xml

More

Packages that depend on flutter_svg_with_style_tag