feat: im settings

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-09 21:54:23 +08:00
parent a282baf5a2
commit 0f41d5b2f8
14 changed files with 865 additions and 9 deletions

View File

@@ -7,9 +7,14 @@ import 'package:flutter/material.dart';
import 'package:get/get.dart';
class FollowSearchPage extends CommonSearchPage {
const FollowSearchPage({super.key, this.mid});
const FollowSearchPage({
super.key,
this.mid,
this.isFromSelct,
});
final int? mid;
final bool? isFromSelct;
@override
State<FollowSearchPage> createState() => _FollowSearchPageState();
@@ -37,7 +42,7 @@ class _FollowSearchPageState extends CommonSearchPageState<FollowSearchPage,
}
return FollowItem(
item: list[index],
onSelect: widget.mid != null
onSelect: widget.mid != null && widget.isFromSelct != false
? (userModel) {
Get.back(result: userModel);
}