This commit is contained in:
xsahil03x
2020-11-25 15:54:19 +05:30
parent ef403d53c9
commit 850657cc63
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ class _NewGroupChatScreenState extends State<NewGroupChatScreen> {
actions: [ actions: [
if (_selectedUsers.isNotEmpty) if (_selectedUsers.isNotEmpty)
IconButton( IconButton(
icon: StreamSvgIcon.right( icon: StreamSvgIcon.arrow_right(
color: Color(0xFF006CFF), color: Color(0xFF006CFF),
), ),
onPressed: () async { onPressed: () async {
+12
View File
@@ -373,4 +373,16 @@ class StreamSvgIcon extends StatelessWidget {
height: size, height: size,
); );
} }
factory StreamSvgIcon.arrow_right({
double size,
Color color,
}) {
return StreamSvgIcon(
assetName: 'Icon_arrow_right.svg',
color: color,
width: size,
height: size,
);
}
} }