目前我正在学习关于flutter堆栈部件,我有一个想法,使这样的
的UI
这是我的代码
import 'package:flutter/material.dart';
class Test extends StatelessWidget{
const Test({Key? key}):super(key: key);
@override
Widget build(BuildContext context){
return Scaffold(
body: Column(
children: <Widget>[
Stack(
children: [
Container(
decoration: BoxDecoration(shape: BoxShape.rectangle,color: Colors.green),
child:null ,
),
Container(
decoration: BoxDecoration(shape: BoxShape.circle,color: Colors.white),
child: null,
)
],
)
],
),
);
}
}
但显然它不起作用,我不知道为什么你们能帮我?我只是需要的绿色和白色背景使用栈在扑
1条答案
按热度按时间5kgi1eie1#
试试这个.
样本使用。