mod: msg top item

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-05 15:08:53 +08:00
parent c4c5eee2eb
commit 8236b93717
2 changed files with 22 additions and 10 deletions

View File

@@ -54,12 +54,18 @@ class _AtMePageState extends State<AtMePage> {
PiliScheme.routePushFromUrl(nativeUri);
}
},
leading: NetworkImgLayer(
leading: GestureDetector(
onTap: () {
Get.toNamed(
'/member?mid=${loadingState.response[index].user?.mid}');
},
child: NetworkImgLayer(
width: 45,
height: 45,
type: 'avatar',
src: loadingState.response[index].user?.avatar,
),
),
title: Text(
"${loadingState.response[index].user?.nickname} "
"${loadingState.response[index].item?.business}中@了我",

View File

@@ -53,12 +53,18 @@ class _ReplyMePageState extends State<ReplyMePage> {
PiliScheme.routePushFromUrl(nativeUri);
}
},
leading: NetworkImgLayer(
leading: GestureDetector(
onTap: () {
Get.toNamed(
'/member?mid=${loadingState.response[index].user?.mid}');
},
child: NetworkImgLayer(
width: 45,
height: 45,
type: 'avatar',
src: loadingState.response[index].user?.avatar,
),
),
title: Text(
"${loadingState.response[index].user?.nickname} "
"回复了我的${loadingState.response[index].item?.business}",