feat: 动态页面跳转个人主页

This commit is contained in:
guozhigq
2023-07-15 23:24:02 +08:00
parent a23103eb69
commit a0427c672b
10 changed files with 67 additions and 42 deletions

View File

@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:pilipala/common/widgets/network_img_layer.dart';
// 富文本
@ -20,9 +21,10 @@ InlineSpan richNode(item, context) {
mainAxisSize: MainAxisSize.min,
children: [
GestureDetector(
onTap: () {},
onTap: () => Get.toNamed('/member?mid=${i.rid}',
arguments: {'face': null}),
child: Text(
'${i.text}',
' ${i.text}',
style: authorStyle,
),
),