mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-07-01 14:13:29 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
6470e2145c | |||
e7b4574920 | |||
82464a8a77 |
@ -61,6 +61,7 @@ class TourRouteState extends State<TourRoute> {
|
|||||||
try {
|
try {
|
||||||
await PushNotificationsHelper.configure(
|
await PushNotificationsHelper.configure(
|
||||||
context, PushNotificationsStatus.FIREBASE);
|
context, PushNotificationsStatus.FIREBASE);
|
||||||
|
areNotificationsConfigured = true;
|
||||||
} catch (e, s) {
|
} catch (e, s) {
|
||||||
logError(e, s);
|
logError(e, s);
|
||||||
}
|
}
|
||||||
|
@ -589,9 +589,7 @@ class _ConversationScreenState extends SafeState<ConversationScreen> {
|
|||||||
},
|
},
|
||||||
icon: Icon(
|
icon: Icon(
|
||||||
Icons.face,
|
Icons.face,
|
||||||
color: _showEmojiPicker
|
color: _showEmojiPicker ? _senderColor : null,
|
||||||
? (_conversation.color ?? Colors.blue)
|
|
||||||
: null,
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -617,8 +615,8 @@ class _ConversationScreenState extends SafeState<ConversationScreen> {
|
|||||||
);
|
);
|
||||||
|
|
||||||
Widget _buildEmojiContainer() => EmojiPicker(
|
Widget _buildEmojiContainer() => EmojiPicker(
|
||||||
bgColor: _conversation.color ?? Colors.blue.shade900,
|
bgColor: _senderColor,
|
||||||
indicatorColor: _conversation.color ?? Colors.blue.shade900,
|
indicatorColor: _senderColor,
|
||||||
rows: 3,
|
rows: 3,
|
||||||
columns: 7,
|
columns: 7,
|
||||||
onEmojiSelected: (emoji, category) {
|
onEmojiSelected: (emoji, category) {
|
||||||
|
@ -11,7 +11,7 @@ description: Comunic client
|
|||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 1.1.6+10
|
version: 1.1.7+11
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.7.0 <3.0.0"
|
sdk: ">=2.7.0 <3.0.0"
|
||||||
|
Reference in New Issue
Block a user