سلام خسته نباشید
اگر بخوایم یه قسمتی از صفحه اسکرول بخوره باید چکار کنیم؟
مثلا فقط قسمت mypost اسکرول بخوره
کد mypost:
Container(
decoration: BoxDecoration(
color: themeData.colorScheme.surface,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(32),
topRight: Radius.circular(32),
),
),
child: Column(
children: [
Padding(
padding: const EdgeInsets.fromLTRB(32, 0, 16, 32),
child: Row(
children: [
Expanded(
child: Text(
"my posts",
style: themeData.textTheme.headline6,
)),
IconButton(
onPressed: () {},
icon: Assets.img.icons.grid.svg()),
IconButton(
onPressed: () {},
icon: Assets.img.icons.table.svg()),
],
),
),
for (var i = 0; i < post.length; i++) Post(post: post[i])
],
),
)