【发布时间】:2021-06-11 08:15:27
【问题描述】:
我为应用栏添加了一个边框半径,应用栏的背景保持白色,我想为边框半径凹槽的背景添加颜色。
应用栏代码
appBar: AppBar(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.vertical(
bottom: Radius.circular(30),
),
),
centerTitle: true,
toolbarHeight: 100,
title: Text(
'Registration',
style: TextStyle(fontSize: 25.0, fontWeight: FontWeight.bold),
),
backgroundColor: Color(0xff1F1F1F),
// backgroundColor: #,
),
【问题讨论】:
标签: android flutter mobile flutter-layout