Merge branch 'feature/new-ui' into feature/mono-repo

This commit is contained in:
Salvatore Giordano
2021-01-12 11:25:59 +01:00
7 changed files with 395 additions and 76 deletions
@@ -889,4 +889,16 @@ class StreamSvgIcon extends StatelessWidget {
height: size,
);
}
factory StreamSvgIcon.icon_flag({
double size,
Color color,
}) {
return StreamSvgIcon(
assetName: 'icon_flag.svg',
color: color,
width: size,
height: size,
);
}
}