Fixed buttons not having enough room on some devices

Šī revīzija ir iekļauta:
Arnaud Vergnet 2020-04-06 15:18:15 +02:00
vecāks 7295108832
revīzija 7b332e11fc

Parādīt failu

@ -236,13 +236,6 @@ class LoginScreen extends React.Component<Props, State> {
<Card.Content>
{this.getFormInput()}
<Card.Actions>
<Button
icon="help-circle"
mode="contained"
onPress={this.onResetPasswordClick}
style={{marginLeft: 'auto'}}>
{i18n.t("loginScreen.resetPassword")}
</Button>
<Button
icon="send"
mode="contained"
@ -253,6 +246,15 @@ class LoginScreen extends React.Component<Props, State> {
{i18n.t("loginScreen.login")}
</Button>
</Card.Actions>
<Card.Actions>
<Button
icon="help-circle"
mode="contained"
onPress={this.onResetPasswordClick}
style={{marginLeft: 'auto'}}>
{i18n.t("loginScreen.resetPassword")}
</Button>
</Card.Actions>
</Card.Content>
</Card>
);