develop_sky #1

Merged
liyi merged 62 commits from develop_sky into develop_sky_liyi 2025-09-22 17:48:20 +08:00
3 changed files with 4 additions and 2 deletions
Showing only changes of commit 7d4e18f7b1 - Show all commits

View File

@ -180,8 +180,7 @@ class _PasswordKeyDetailPageState extends State<PasswordKeyDetailPage>
left: 30.w, right: 30.w, top: 30.w, bottom: 30.w),
padding: EdgeInsets.only(top: 25.w, bottom: 25.w),
onClick: () async {
final bool isNetWork =
await LockMainLogic.to()?.judgeTheNetwork() ?? false;
final bool isNetWork = await logic.isConnected();
if (!isNetWork) {
return;
}

View File

@ -53,6 +53,7 @@ class KeySearchWidget extends StatelessWidget {
controller: editingController,
autofocus: false,
textAlign: TextAlign.start,
textInputAction: TextInputAction.search,
onChanged: (String value) {
AppLog.log('onChanged:$value');
},
@ -60,6 +61,7 @@ class KeySearchWidget extends StatelessWidget {
AppLog.log('onEditingComplete:');
},
onSubmitted: (String value) {
FocusScope.of(context).unfocus(); //
onSubmittedAction!();
},
decoration: InputDecoration(

View File

@ -64,6 +64,7 @@ class _TitleAppBarState extends State<TitleAppBar> {
EasyLoading.dismiss();
}
Navigator.pop(context);
FocusScope.of(context).unfocus(); //
}
})
: Container()),