mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-08 17:11:14 +00:00
Merge pull request 'feat: Add refresh indicator on Recovery Key page to support drag gestures' (#148) from recovery-keys into master
Reviewed-on: https://git.selfprivacy.org/kherel/selfprivacy.org.app/pulls/148 Reviewed-by: Inex Code <inex.code@selfprivacy.org>
This commit is contained in:
commit
32ca58537e
|
@ -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,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue