为什么这段代码隐藏了容器的孩子以及如何解决这个问题。我无法在一侧设置边框半径,在一侧或两侧设置边框
Container(
child: Text(
"Test",
style: TextStyle(
color: Theme.of(context).primaryColor,
fontWeight: FontWeight.w800,
fontFamily: "GE",
fontSize: 30.0,
),
),
width: double.infinity,
height: 100.0,
padding: EdgeInsets.symmetric(vertical: 100.0, horizontal: 100.0),
decoration: BoxDecoration(
color: Colors.grey[800],
borderRadius: const BorderRadius.only(
bottomLeft: const Radius.circular(50.0),
),
border: Border(
top:
BorderSide(width: 16.0, color: Colors.lightBlue.shade600),
bottom:
BorderSide(width: 16.0, color: Colors.lightBlue.shade900),
),
),
)