mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-07-01 06:03:29 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
6470e2145c | |||
e7b4574920 | |||
82464a8a77 |
@ -61,6 +61,7 @@ class TourRouteState extends State<TourRoute> {
|
||||
try {
|
||||
await PushNotificationsHelper.configure(
|
||||
context, PushNotificationsStatus.FIREBASE);
|
||||
areNotificationsConfigured = true;
|
||||
} catch (e, s) {
|
||||
logError(e, s);
|
||||
}
|
||||
|
@ -589,9 +589,7 @@ class _ConversationScreenState extends SafeState<ConversationScreen> {
|
||||
},
|
||||
icon: Icon(
|
||||
Icons.face,
|
||||
color: _showEmojiPicker
|
||||
? (_conversation.color ?? Colors.blue)
|
||||
: null,
|
||||
color: _showEmojiPicker ? _senderColor : null,
|
||||
),
|
||||
),
|
||||
],
|
||||
@ -617,8 +615,8 @@ class _ConversationScreenState extends SafeState<ConversationScreen> {
|
||||
);
|
||||
|
||||
Widget _buildEmojiContainer() => EmojiPicker(
|
||||
bgColor: _conversation.color ?? Colors.blue.shade900,
|
||||
indicatorColor: _conversation.color ?? Colors.blue.shade900,
|
||||
bgColor: _senderColor,
|
||||
indicatorColor: _senderColor,
|
||||
rows: 3,
|
||||
columns: 7,
|
||||
onEmojiSelected: (emoji, category) {
|
||||
|
@ -11,7 +11,7 @@ description: Comunic client
|
||||
# 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.1.6+10
|
||||
version: 1.1.7+11
|
||||
|
||||
environment:
|
||||
sdk: ">=2.7.0 <3.0.0"
|
||||
|
Reference in New Issue
Block a user