diff --git a/src/components/NavigationHeader.tsx b/src/components/NavigationHeader.tsx index 4f6ac83ab..9f2e86c56 100644 --- a/src/components/NavigationHeader.tsx +++ b/src/components/NavigationHeader.tsx @@ -130,7 +130,7 @@ const NavigationHeader = ({ {icon && {icon}} {title} @@ -165,7 +165,6 @@ const styles = StyleSheet.create({ }, containerLg: { height: HEADER_HEIGHT, - // marginBottom: 32, marginBottom: 16, }, containerSm: { @@ -197,6 +196,11 @@ const styles = StyleSheet.create({ titleText: { textAlign: 'center', }, + titleText100: { + // on android title sometimes get shrinked. So if there is no icon, make sure it takes the full width + // https://github.com/synonymdev/bitkit/issues/1758 + width: '100%', + }, action: { flex: 1, flexDirection: 'row',