Skip to content

Commit

Permalink
Merge pull request #997 from sap-labs-france/ui
Browse files Browse the repository at this point in the history
Fixed qrcode scanner status bar background color on iOS
  • Loading branch information
AlixH authored Apr 13, 2023
2 parents 14b65a0 + d50ef10 commit fe35548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/screens/home/ChargingStationQrCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export default class ChargingStationQrCode extends BaseScreen<State, Props> {
const { activateQrCode } = this.state;
const commonColor = Utils.getCurrentCommonColor();
return (
<View>
<View style={{backgroundColor: commonColor.containerBgColor}}>
<HeaderComponent
navigation={this.props.navigation}
title={I18n.t('qrCode.scanChargingStationQrCodeTitle')}
Expand Down
2 changes: 1 addition & 1 deletion src/screens/tenants/TenantQrCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default class TenantQrCode extends BaseScreen<State, Props> {
public render() {
const commonColor = Utils.getCurrentCommonColor();
return (
<View>
<View style={{backgroundColor: commonColor.containerBgColor}}>
<HeaderComponent
navigation={this.props.navigation}
title={I18n.t('qrCode.scanTenantQrCodeTitle')}
Expand Down

0 comments on commit fe35548

Please sign in to comment.