From 6a36abadbf24397ea941c4fb22860040538b945a Mon Sep 17 00:00:00 2001
From: Ezequiel de Oliveira <ezequiel1de1oliveira@gmail.com>
Date: Tue, 17 Mar 2020 17:42:02 -0300
Subject: [PATCH] [FIX] Emojis transparent on android (#1881)

Co-authored-by: Diego Mello <diegolmello@gmail.com>
---
 __tests__/__snapshots__/Storyshots.test.js.snap | 7 +++++++
 app/containers/EmojiPicker/styles.js            | 3 ++-
 app/containers/message/styles.js                | 3 ++-
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/__tests__/__snapshots__/Storyshots.test.js.snap b/__tests__/__snapshots__/Storyshots.test.js.snap
index 09be44246..792cd66d0 100644
--- a/__tests__/__snapshots__/Storyshots.test.js.snap
+++ b/__tests__/__snapshots__/Storyshots.test.js.snap
@@ -11263,6 +11263,7 @@ exports[`Storyshots Message list message 1`] = `
                     <Text
                       style={
                         Object {
+                          "color": "#ffffff",
                           "fontSize": 13,
                           "marginLeft": 7,
                         }
@@ -11444,6 +11445,7 @@ exports[`Storyshots Message list message 1`] = `
                     <Text
                       style={
                         Object {
+                          "color": "#ffffff",
                           "fontSize": 13,
                           "marginLeft": 7,
                         }
@@ -12171,6 +12173,7 @@ exports[`Storyshots Message list message 1`] = `
                     <Text
                       style={
                         Object {
+                          "color": "#ffffff",
                           "fontSize": 13,
                           "marginLeft": 7,
                         }
@@ -12250,6 +12253,7 @@ exports[`Storyshots Message list message 1`] = `
                     <Text
                       style={
                         Object {
+                          "color": "#ffffff",
                           "fontSize": 13,
                           "marginLeft": 7,
                         }
@@ -12329,6 +12333,7 @@ exports[`Storyshots Message list message 1`] = `
                     <Text
                       style={
                         Object {
+                          "color": "#ffffff",
                           "fontSize": 13,
                           "marginLeft": 7,
                         }
@@ -12408,6 +12413,7 @@ exports[`Storyshots Message list message 1`] = `
                     <Text
                       style={
                         Object {
+                          "color": "#ffffff",
                           "fontSize": 13,
                           "marginLeft": 7,
                         }
@@ -12487,6 +12493,7 @@ exports[`Storyshots Message list message 1`] = `
                     <Text
                       style={
                         Object {
+                          "color": "#ffffff",
                           "fontSize": 13,
                           "marginLeft": 7,
                         }
diff --git a/app/containers/EmojiPicker/styles.js b/app/containers/EmojiPicker/styles.js
index f7fdbfdef..f6278dd1a 100644
--- a/app/containers/EmojiPicker/styles.js
+++ b/app/containers/EmojiPicker/styles.js
@@ -47,7 +47,8 @@ export default StyleSheet.create({
 	},
 	categoryEmoji: {
 		backgroundColor: 'transparent',
-		textAlign: 'center'
+		textAlign: 'center',
+		color: '#ffffff'
 	},
 	customCategoryEmoji: {
 		margin: 8
diff --git a/app/containers/message/styles.js b/app/containers/message/styles.js
index 6b8559ab7..3e01285bc 100644
--- a/app/containers/message/styles.js
+++ b/app/containers/message/styles.js
@@ -61,7 +61,8 @@ export default StyleSheet.create({
 	},
 	reactionEmoji: {
 		fontSize: 13,
-		marginLeft: 7
+		marginLeft: 7,
+		color: '#ffffff'
 	},
 	reactionCustomEmoji: {
 		width: 19,
-- 
GitLab