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,11 +54,17 @@ class _AtMePageState extends State<AtMePage> {
PiliScheme.routePushFromUrl(nativeUri);
}
},
leading: NetworkImgLayer(
width: 45,
height: 45,
type: 'avatar',
src: loadingState.response[index].user?.avatar,
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} "

View File

@@ -53,11 +53,17 @@ class _ReplyMePageState extends State<ReplyMePage> {
PiliScheme.routePushFromUrl(nativeUri);
}
},
leading: NetworkImgLayer(
width: 45,
height: 45,
type: 'avatar',
src: loadingState.response[index].user?.avatar,
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} "