Fixed ios icon position

This commit is contained in:
Arnaud Vergnet 2020-04-10 14:25:50 +02:00
parent b46e671d83
commit 5b994aab95

View file

@ -2,7 +2,7 @@
import * as React from 'react'; import * as React from 'react';
import {Button, Card, withTheme} from 'react-native-paper'; import {Button, Card, withTheme} from 'react-native-paper';
import {StyleSheet} from "react-native"; import {Platform, StyleSheet} from "react-native";
import i18n from 'i18n-js'; import i18n from 'i18n-js';
type Props = { type Props = {
@ -38,13 +38,25 @@ class ActionsDashBoardItem extends React.PureComponent<Props> {
> >
{i18n.t("homeScreen.servicesButton")} {i18n.t("homeScreen.servicesButton")}
</Button> </Button>
<Button {
// Leave space to fix ios icon position
Platform.OS === 'ios'
? <Button
icon="settings"
mode="contained"
onPress={this.gotToSettings}
style={styles.settingsButton}
compact
> </Button>
: <Button
icon="settings" icon="settings"
mode="contained" mode="contained"
onPress={this.gotToSettings} onPress={this.gotToSettings}
style={styles.settingsButton} style={styles.settingsButton}
compact compact
/> />
}
</Card.Content> </Card.Content>
</Card> </Card>
); );