使用flutter 的deoration時報錯, 提醒:deoration和 color: 背景顏色不能共存,兩者同時只能有一個
decoration能夠設置邊框、背景色、背景圖片、圓角等屬性,很是實用。對於transform這個屬性,通常有過其餘平臺開發經驗的,都大體瞭解,這種變換,通常不是變換的實際位置,而是變換的繪製效果,也就是說它的點擊以及尺寸、間距等都是按照未變換前的。code
demoorm
new Container( constraints: new BoxConstraints.expand( height:Theme.of(context).textTheme.display1.fontSize * 1.1 + 200.0, ), decoration: new BoxDecoration( border: new Border.all(width: 2.0, color: Colors.red), color: Colors.grey, borderRadius: new BorderRadius.all(new Radius.circular(20.0)), image: new DecorationImage( image: new NetworkImage('http://h.hiphotos.baidu.com/zhidao/wh%3D450%2C600/sign=0d023672312ac65c67506e77cec29e27/9f2f070828381f30dea167bbad014c086e06f06c.jpg'), centerSlice: new Rect.fromLTRB(270.0, 180.0, 1360.0, 730.0), ), ), padding: const EdgeInsets.all(8.0), alignment: Alignment.center, child: new Text('Hello World', style: Theme.of(context).textTheme.display1.copyWith(color: Colors.black)), transform: new Matrix4.rotationZ(0.3), )
tips圖片
color:用來設置container背景色,若是foregroundDecoration設置的話,可能會遮蓋color效果。 decoration:繪製在child後面的裝飾,設置了decoration的話,就不能設置color屬性,不然會報錯,此時應該在decoration中進行顏色的設置。 foregroundDecoration:繪製在child前面的裝飾。