diff --git a/example/lib/group_chat_details_screen.dart b/example/lib/group_chat_details_screen.dart index d11f377a..e8a88bac 100644 --- a/example/lib/group_chat_details_screen.dart +++ b/example/lib/group_chat_details_screen.dart @@ -105,8 +105,10 @@ class _GroupChatDetailsScreenState extends State { StreamNeumorphicButton( child: IconButton( padding: const EdgeInsets.all(0), - icon: StreamSvgIcon.check(), - color: Color(0xFF006CFF), + icon: StreamSvgIcon.check( + size: 24, + color: _isGroupNameEmpty ? Colors.grey : Color(0xFF006CFF), + ), onPressed: _isGroupNameEmpty ? null : () async { diff --git a/example/lib/new_group_chat_screen.dart b/example/lib/new_group_chat_screen.dart index 1db848a1..a11767c3 100644 --- a/example/lib/new_group_chat_screen.dart +++ b/example/lib/new_group_chat_screen.dart @@ -161,6 +161,7 @@ class _NewGroupChatScreenState extends State { child: Padding( padding: const EdgeInsets.all(0.0), child: StreamSvgIcon.close( + color: Colors.black, size: 24, ), ), diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 6e34335d..dab13883 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,6 +1,6 @@ name: example description: A new Flutter project. -version: 1.0.70+72 +version: 1.0.71+73 environment: sdk: ">=2.2.2 <3.0.0" diff --git a/lib/src/user_item.dart b/lib/src/user_item.dart index 03c275ac..f12e3e61 100644 --- a/lib/src/user_item.dart +++ b/lib/src/user_item.dart @@ -76,6 +76,7 @@ class UserItem extends StatelessWidget { ? CircleAvatar( child: StreamSvgIcon.check( size: 20, + color: Colors.white, ), radius: 10, )