Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-21 11:48:42 +08:00
parent 1efd62803a
commit ac60ac417b
130 changed files with 1631 additions and 2132 deletions

View File

@@ -142,9 +142,8 @@ class _ArticleListPageState extends State<ArticleListPage> {
if (_controller.author != null) ...[
const SizedBox(height: 10),
GestureDetector(
onTap: () {
Get.toNamed('/member?mid=${_controller.author!.mid}');
},
onTap: () =>
Get.toNamed('/member?mid=${_controller.author!.mid}'),
child: Row(
children: [
NetworkImgLayer(
@@ -193,10 +192,8 @@ class _ArticleListPageState extends State<ArticleListPage> {
actions: [
IconButton(
tooltip: '浏览器打开',
onPressed: () {
PageUtils.inAppWebview(
'${HttpString.baseUrl}/read/mobile-readlist/rl${_controller.id}');
},
onPressed: () => PageUtils.inAppWebview(
'${HttpString.baseUrl}/read/mobile-readlist/rl${_controller.id}'),
icon: const Icon(Icons.open_in_browser_outlined, size: 19),
)
],