opt: func

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-07 13:07:15 +08:00
parent 6353ecc13e
commit 286193f08f
99 changed files with 204 additions and 270 deletions

View File

@@ -92,19 +92,19 @@ abstract class CommonController<R, T> extends GetxController
}
@override
Future<void> onRefresh() async {
Future<void> onRefresh() {
currentPage = 1;
isEnd = false;
await queryData();
return queryData();
}
Future onLoadMore() async {
await queryData(false);
Future<void> onLoadMore() {
return queryData(false);
}
Future onReload() async {
Future<void> onReload() {
loadingState.value = LoadingState.loading();
await onRefresh();
return onRefresh();
}
@override

View File

@@ -85,7 +85,7 @@ abstract class CommonPublishPageState<T extends CommonPublishPage>
void didChangeAppLifecycleState(AppLifecycleState state) {
if (state == AppLifecycleState.resumed) {
if (mounted && widget.autofocus && selectKeyboard.value) {
WidgetsBinding.instance.addPostFrameCallback((_) async {
WidgetsBinding.instance.addPostFrameCallback((_) {
if (focusNode.hasFocus) {
focusNode.unfocus();
_requestFocus();
@@ -102,7 +102,7 @@ abstract class CommonPublishPageState<T extends CommonPublishPage>
}
}
Future<void> updatePanelType(PanelType type) async {
void updatePanelType(PanelType type) {
final isSwitchToKeyboard = PanelType.keyboard == type;
final isSwitchToEmojiPanel = PanelType.emoji == type;
bool isUpdated = false;