mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
11 lines
215 B
Dart
11 lines
215 B
Dart
|
import 'package:flutter/widgets.dart';
|
||
|
import 'package:flutter_svg/flutter_svg.dart';
|
||
|
|
||
|
Widget svgWidgetWithName(String name) {
|
||
|
final Widget svg = SvgPicture.asset(
|
||
|
'assets/images/$name',
|
||
|
);
|
||
|
|
||
|
return svg;
|
||
|
}
|