第一张图是我拥有,第二张图是我想要,
我尝试使用定位小工具。但是,它不工作。并使用填充它也不工作。
x1c 0d1x的第一个字符
这里有我的代码:
导入“ Package :flutter/材料. dart”;
类ChatScreen扩展了状态控件{ const ChatScreen({super.key});
=〉_聊天屏幕状态();}
class _ChatScreenState extends State<ChatScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: CustomScrollView(
slivers: [
SliverAppBar(
pinned: true,
expandedHeight: 200,
flexibleSpace: FlexibleSpaceBar(
title: SafeArea(
child: const CircleAvatar(
backgroundColor: Color.fromRGBO(31, 27, 36, 1),
radius: 38,
child: CircleAvatar(
backgroundImage: NetworkImage(
'abc.com/286.png'),
radius: 35,
),
),
),
centerTitle: true,
background: Image.network(
"abc.com/a.jpg",
fit: BoxFit.fill,
),
),
),
SliverToBoxAdapter(
child: Column(children: [
Container(
height: 250,
color: Colors.red,
),
]),
)
],
),
);
}
}
1条答案
按热度按时间2lpgd9681#
请尝试以下代码:
并发挥它,找出你正在寻找什么。希望它有帮助:D