flutter_svg_with_style_tag 0.0.4 flutter_svg_with_style_tag: ^0.0.4 copied to clipboard
flutter load svg with support style tag.
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,
),
],
),
),
);
}
}