1. 程式人生 > 其它 >flutter報錯‘color == null || decoration == null‘

flutter報錯‘color == null || decoration == null‘

技術標籤:flutterflutter

在寫Container的時候因為同時使用color與decoration產生了衝突
衝突程式碼
在這裡插入圖片描述

Container(
  decoration:BoxDecoration(
    borderRadius: BorderRadius.horizontal(left: Radius.circular(10)),
    color:Colors.pinkAccent,
  ),
  width:100,
  alignment:Alignment.centerRight,
  child:Text('123456 已完成',style:TextStyle(
color:Colors.white)), ),