chore: code clean up

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2024-11-10 09:49:06 +08:00
parent 03d405e197
commit 59910e275e
133 changed files with 597 additions and 816 deletions

View File

@@ -18,8 +18,8 @@ class SearchVideoPanel extends StatelessWidget {
SearchVideoPanel({
required this.ctr,
required this.loadingState,
Key? key,
}) : super(key: key);
super.key,
});
final SearchPanelController ctr;
final dynamic loadingState;
@@ -55,7 +55,7 @@ class SearchVideoPanel extends StatelessWidget {
type: i['type'],
selectedType: controller.selectedType.value,
callFn: (bool selected) async {
print('selected: $selected');
debugPrint('selected: $selected');
controller.selectedType.value = i['type'];
ctr.order.value =
i['type'].toString().split('.').last;
@@ -136,8 +136,8 @@ class CustomFilterChip extends StatelessWidget {
this.type,
this.selectedType,
this.callFn,
Key? key,
}) : super(key: key);
super.key,
});
final String? label;
final ArchiveFilterType? type;