如何制作如图所示的盒子里面的盒子?当我尝试制作灰盒并提供 with
时,它需要一切都可以。
return ListView(
physics: const BouncingScrollPhysics(
parent: AlwaysScrollableScrollPhysics()),
Children:[
Container(Here is black box),
Container(Here is Grey box),
Container(Here is badges),
],
);
答案 0 :(得分:1)
使用 Stack
和 Positioned
小部件有助于将小部件放在堆栈中您想要的任何位置。
希望能帮到你。