Added top padding in the availableRooms screen in landscape

Esse commit está contido em:
Yohan Simard 2019-11-09 11:54:43 +01:00
commit 15107a6adc

Ver arquivo

@ -198,6 +198,11 @@ export default class WebViewScreen extends React.Component<Props, State> {
elevation: 0, // Fix for android shadow
}}
locked={true}
style = {{
paddingTop: this.state.isLandscape ? 20 : 0,
backgroundColor: ThemeManager.getCurrentThemeVariables().brandPrimary
}}
>
{this.getTabbedWebview()}
</Tabs>}