1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-07-01 14:13:29 +00:00

3 Commits
1.1.6 ... 1.1.7

Author SHA1 Message Date
6470e2145c Fix emoji picker color 2021-05-04 07:52:44 +02:00
e7b4574920 Fix a issue 2021-05-04 07:49:45 +02:00
82464a8a77 Start to work on v1.1.7 2021-05-03 17:29:58 +02:00
3 changed files with 5 additions and 6 deletions

View File

@ -61,6 +61,7 @@ class TourRouteState extends State<TourRoute> {
try {
await PushNotificationsHelper.configure(
context, PushNotificationsStatus.FIREBASE);
areNotificationsConfigured = true;
} catch (e, s) {
logError(e, s);
}

View File

@ -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) {

View File

@ -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"