feat: Add refresh indicator on Recovery Key page to support drag gestures

pull/148/head
NaiJi ✨ 2022-11-21 12:35:00 +04:00
parent 0639ee4d57
commit 3ba2c6f731
1 changed files with 17 additions and 6 deletions

View File

@ -21,6 +21,12 @@ class RecoveryKey extends StatefulWidget {
}
class _RecoveryKeyState extends State<RecoveryKey> {
@override
void initState() {
super.initState();
context.read<RecoveryKeyCubit>().load();
}
@override
Widget build(final BuildContext context) {
final RecoveryKeyState keyStatus = context.watch<RecoveryKeyCubit>().state;
@ -50,12 +56,17 @@ class _RecoveryKeyState extends State<RecoveryKey> {
break;
}
return BrandHeroScreen(
heroTitle: 'recovery_key.key_main_header'.tr(),
heroSubtitle: subtitle,
hasBackButton: true,
hasFlashButton: false,
children: widgets,
return RefreshIndicator(
onRefresh: () async {
context.read<RecoveryKeyCubit>().load();
},
child: BrandHeroScreen(
heroTitle: 'recovery_key.key_main_header'.tr(),
heroSubtitle: subtitle,
hasBackButton: true,
hasFlashButton: false,
children: widgets,
),
);
}
}