答案 0 :(得分:1)
您可以尝试
@override
Widget build(BuildContext context) {
return Scaffold(
body: Material(
elevation: 12,
borderRadius: BorderRadius.only(bottomRight: Radius.elliptical(500, 70), bottomLeft: Radius.elliptical(500, 70)),
color: Colors.transparent,
child: Container(
width: double.infinity,
height: 100,
padding: EdgeInsets.only(bottom: 12),
alignment: Alignment.bottomCenter,
child: Text("dride", style: TextStyle(fontSize: 18, fontWeight: FontWeight.w500, color: Colors.white)),
decoration: BoxDecoration(color: Colors.grey[800], borderRadius: BorderRadius.only(bottomRight: Radius.elliptical(500, 70), bottomLeft: Radius.elliptical(500, 70))),
),
),
);
}