1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| Container( transform: Matrix4.rotationZ(-0.5), child: Text("容器的内容部分"), //color: Colors.blue, width: 300, height: 35, clipBehavior: Clip.none, constraints: BoxConstraints(minWidth: 0,maxWidth: 100,minHeight: 0,maxHeight: 100), decoration:BoxDecoration(color: Colors.red,image: DecorationImage(image: AssetImage("images/flutter.png")), border: Border(top: BorderSide(color: Colors.lightGreenAccent,width: 4,style: BorderStyle.solid)), borderRadius: BorderRadius.all(Radius.elliptical(3, 4)), boxShadow: [ BoxShadow(color: Colors.lightGreenAccent,offset: Offset(20,20)), BoxShadow(color: Colors.brown,offset: Offset(-20,-20)) ], gradient: LinearGradient( colors: [ Colors.lightBlue, Colors.orange ], stops: [ 0,0.5 ] ), shape: BoxShape.rectangle ) , )
|