feat: 粉丝页面

This commit is contained in:
guozhigq
2023-07-11 15:37:47 +08:00
parent 522ce60750
commit a2f65cfe09
10 changed files with 234 additions and 4 deletions

View File

@ -0,0 +1,22 @@
import 'package:flutter/material.dart';
import 'package:pilipala/common/widgets/network_img_layer.dart';
Widget fanItem({item}) {
return ListTile(
onTap: () {},
leading: NetworkImgLayer(
width: 38,
height: 38,
type: 'avatar',
src: item.face,
),
title: Text(item.uname),
subtitle: Text(
item.sign,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
dense: true,
trailing: const SizedBox(width: 6),
);
}