mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
mod: msg top item
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -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} "
|
||||
|
||||
@@ -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} "
|
||||
|
||||
Reference in New Issue
Block a user