We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3aef75 commit b781e90Copy full SHA for b781e90
1 file changed
src/embedded/components/IterableEmbeddedBanner/IterableEmbeddedBanner.styles.ts
@@ -1,11 +1,12 @@
1
-import { StyleSheet } from 'react-native';
+import { StyleSheet, Platform } from 'react-native';
2
import {
3
embeddedMediaImageBackgroundColors,
4
embeddedMediaImageBorderColors,
5
} from '../../constants/embeddedViewDefaults';
6
7
-export const IMAGE_HEIGHT = 70;
8
-export const IMAGE_WIDTH = 70;
+// See https://support.iterable.com/hc/en-us/articles/23230946708244-Out-of-the-Box-Views-for-Embedded-Messages#banners
+export const IMAGE_HEIGHT = Platform.OS === 'android' ? 80 : 100;
9
+export const IMAGE_WIDTH = Platform.OS === 'android' ? 80 : 100;
10
11
export const styles = StyleSheet.create({
12
body: {
0 commit comments