Skip to content

Commit

Permalink
Merge pull request #125 from LezdCS/develop
Browse files Browse the repository at this point in the history
1.8.4
  • Loading branch information
LezdCS authored Aug 29, 2023
2 parents 81f93ae + b1b0308 commit 6bc65c1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions lib/src/domain/entities/stream_elements/se_activity.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ class SeActivity extends Equatable {
//circle color
colors.add(const Color(0xFF2E0219));
break;
case ActivityType.unsupported:
//background color
colors.add(const Color(0xFFA47CED));
//circle color
colors.add(const Color(0xFF341D5B));
break;
}
return colors;
}
Expand Down Expand Up @@ -122,6 +128,9 @@ class SeActivity extends Equatable {
case ActivityType.host:
s = '$amount Hosted viewers';
break;
case ActivityType.unsupported:
s = 'Unsupported event';
break;
}
return s;
}
Expand Down Expand Up @@ -165,6 +174,12 @@ class SeActivity extends Equatable {
size: 18,
);
break;
case ActivityType.unsupported:
icon = const Icon(
Icons.block,
size: 18,
);
break;
}
return icon;
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.8.3+33
version: 1.8.4+34

environment:
sdk: '>=2.19.0-0 <4.0.0'
Expand Down

0 comments on commit 6bc65c1

Please sign in to comment.