Fix warnings around missing awaits

This commit is contained in:
vishnukvmd
2024-03-07 13:46:05 +05:30
parent 90bbc54bb5
commit 3b498f1be6
38 changed files with 108 additions and 42 deletions

View File

@@ -56,7 +56,7 @@ class _LockScreenState extends State<LockScreen> with WidgetsBindingObserver {
text: context.l10n.unlock,
iconData: Icons.lock_open_outlined,
onTap: () async {
_showLockScreen(source: "tapUnlock");
await _showLockScreen(source: "tapUnlock");
},
),
),