Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-21 11:48:42 +08:00
parent 1efd62803a
commit ac60ac417b
130 changed files with 1631 additions and 2132 deletions

View File

@@ -90,10 +90,8 @@ class _FavNoteChildPageState extends State<FavNoteChildPage>
),
GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {
_favNoteController.handleSelect(
!_favNoteController.allSelected.value);
},
onTap: () => _favNoteController.handleSelect(
!_favNoteController.allSelected.value),
child: const Padding(
padding: EdgeInsets.only(
top: 14,
@@ -154,9 +152,7 @@ class _FavNoteChildPageState extends State<FavNoteChildPage>
return FavNoteItem(
item: response[index],
ctr: _favNoteController,
onSelect: () {
_favNoteController.onSelect(index);
},
onSelect: () => _favNoteController.onSelect(index),
);
},
childCount: response!.length,