mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
[feat] improve svg widget api (#3205)
* feat: change api * fix: api upgrade errors
This commit is contained in:
parent
243f80b6d5
commit
00ee4be723
@ -86,7 +86,6 @@ class SidebarUser extends StatelessWidget {
|
||||
backgroundColor: Colors.transparent,
|
||||
child: FlowySvg(
|
||||
FlowySvgData('emoji/$iconUrl'),
|
||||
overrideColor: false,
|
||||
),
|
||||
),
|
||||
),
|
||||
|
@ -318,7 +318,6 @@ class _CurrentIcon extends StatelessWidget {
|
||||
child: FlowySvg(
|
||||
FlowySvgData('emoji/$iconUrl'),
|
||||
size: _iconSize,
|
||||
overrideColor: false,
|
||||
),
|
||||
),
|
||||
),
|
||||
@ -389,7 +388,7 @@ class IconOption extends StatelessWidget {
|
||||
borderRadius: Corners.s6Border,
|
||||
hoverColor: Theme.of(context).colorScheme.tertiaryContainer,
|
||||
onTap: () => setIcon(iconUrl),
|
||||
child: FlowySvg(emoji, size: _iconSize, overrideColor: false),
|
||||
child: FlowySvg(emoji, size: _iconSize),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ class FlowySvg extends StatelessWidget {
|
||||
super.key,
|
||||
this.size,
|
||||
this.color,
|
||||
this.overrideColor = true,
|
||||
this.blendMode = BlendMode.srcIn,
|
||||
});
|
||||
|
||||
/// The data for the flowy svg. Will be generated by the generator in this
|
||||
@ -39,7 +39,7 @@ class FlowySvg extends StatelessWidget {
|
||||
///
|
||||
/// Defaults to true
|
||||
///
|
||||
final bool overrideColor;
|
||||
final BlendMode blendMode;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
@ -47,8 +47,8 @@ class FlowySvg extends StatelessWidget {
|
||||
|
||||
final child = SvgPicture.asset(
|
||||
_normalized(),
|
||||
colorFilter: iconColor != null && overrideColor
|
||||
? ColorFilter.mode(iconColor, BlendMode.srcIn)
|
||||
colorFilter:
|
||||
iconColor != null ? ColorFilter.mode(iconColor, blendMode)
|
||||
: null,
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user