[FIX] Rooms header overlapping right icons (#2503)
takes into account long names on small screen which led to overlapping title and right buttons on the header bar
This commit is contained in:
parent
4b3223198a
commit
e9a6e9a4ea
|
@ -23,7 +23,7 @@ export const getHeaderHeight = (isLandscape) => {
|
||||||
|
|
||||||
export const getHeaderTitlePosition = insets => ({
|
export const getHeaderTitlePosition = insets => ({
|
||||||
left: 60 + insets.left,
|
left: 60 + insets.left,
|
||||||
right: 80 + insets.right
|
right: 140 + insets.right
|
||||||
});
|
});
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
|
|
Loading…
Reference in New Issue