Merge branch 'feature/new-ui' of https://github.com/GetStream/stream-chat-flutter into feature/group-info-screen

 Conflicts:
	example/lib/chat_info_screen.dart
	example/lib/main.dart
	example/pubspec.yaml
	lib/src/image_footer.dart
	lib/src/stream_svg_icon.dart
This commit is contained in:
Deven Joshi
2020-12-31 18:53:13 +05:30
53 changed files with 1473 additions and 869 deletions
+24
View File
@@ -758,6 +758,30 @@ class StreamSvgIcon extends StatelessWidget {
);
}
factory StreamSvgIcon.error({
double size,
Color color,
}) {
return StreamSvgIcon(
assetName: 'Icon_error.svg',
color: color,
width: size,
height: size,
);
}
factory StreamSvgIcon.circle_up({
double size,
Color color,
}) {
return StreamSvgIcon(
assetName: 'Icon_circle_up.svg',
color: color,
width: size,
height: size,
);
}
factory StreamSvgIcon.Icon_user_settings({
double size,
Color color,