添加wiki

This commit is contained in:
DelLevin-Home
2026-06-03 18:42:32 +08:00
parent f2842afd32
commit ea7381d0bc
19 changed files with 1431 additions and 7 deletions

View File

@@ -30,8 +30,9 @@ class _NoteListItemContent extends StatelessWidget {
final colors = Theme.of(context).colorScheme;
return InkWell(
onTap: () {
final provider = context.read<AppProvider>();
Navigator.pushNamed(context, '/note-detail', arguments: note).then((_) async {
await context.read<AppProvider>().loadNotes();
await provider.loadNotes();
});
},
onLongPress: () => _showDeleteDialog(context),