mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-12-03 02:30:05 +00:00
14 lines
383 B
Dart
14 lines
383 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
|
|
Widget svgWidget(String name, {Size? size, Color? color}) {
|
|
if (size != null) {
|
|
return SizedBox.fromSize(
|
|
size: size,
|
|
child: SvgPicture.asset('assets/images/$name.svg', color: color),
|
|
);
|
|
} else {
|
|
return SvgPicture.asset('assets/images/$name.svg', color: color);
|
|
}
|
|
}
|