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); PiliScheme.routePushFromUrl(nativeUri);
} }
}, },
leading: NetworkImgLayer( leading: GestureDetector(
width: 45, onTap: () {
height: 45, Get.toNamed(
type: 'avatar', '/member?mid=${loadingState.response[index].user?.mid}');
src: loadingState.response[index].user?.avatar, },
child: NetworkImgLayer(
width: 45,
height: 45,
type: 'avatar',
src: loadingState.response[index].user?.avatar,
),
), ),
title: Text( title: Text(
"${loadingState.response[index].user?.nickname} " "${loadingState.response[index].user?.nickname} "

View File

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