|
@@ -1,7 +1,6 @@
|
|
|
import 'package:flutter/material.dart';
|
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
|
|
|
|
-
|
|
|
/// For icon that needs to change color when it is on hovered
|
|
|
///
|
|
|
/// Get the hover color from ThemeData
|
|
@@ -12,16 +11,11 @@ class FlowySvg extends StatelessWidget {
|
|
|
|
|
|
@override
|
|
|
Widget build(BuildContext context) {
|
|
|
- if (size != null) {
|
|
|
- return SizedBox.fromSize(
|
|
|
- size: size,
|
|
|
- child: SvgPicture.asset('assets/images/$name.svg',
|
|
|
- color: Theme.of(context).iconTheme.color),
|
|
|
- );
|
|
|
- } else {
|
|
|
- return SvgPicture.asset('assets/images/$name.svg',
|
|
|
- color: Theme.of(context).iconTheme.color);
|
|
|
- }
|
|
|
+ return svgWidget(
|
|
|
+ 'assets/images/$name.svg',
|
|
|
+ size: size,
|
|
|
+ color: Theme.of(context).iconTheme.color,
|
|
|
+ );
|
|
|
}
|
|
|
}
|
|
|
|