fix: stuck connecting

This commit is contained in:
Paolo Miguel de Leon
2022-09-27 11:13:51 +08:00
parent 72db224ee7
commit e2e3c580cb
19 changed files with 350 additions and 62 deletions

View File

@@ -56,6 +56,18 @@ export const RequestScreen: React.FC = () => {
{controller.statusMessage !== '' && (
<Column elevation={1} padding="16 24">
<Text>{controller.statusMessage}</Text>
{controller.statusHint !== '' && (
<Text size="small" color={Colors.Grey}>
{controller.statusHint}
</Text>
)}
{controller.isStatusCancellable && (
<Button
margin={[8, 0, 0, 0]}
title={t('cancel', { ns: 'common' })}
onPress={controller.CANCEL}
/>
)}
</Column>
)}
</Column>