Answers for "flutter rounded edge container"

2

flutter rounded container transperent corners

new Container(
          height: 300.0,
          color: Colors.transparent,
          child: new Container(
            decoration: new BoxDecoration(
              color: Colors.green,
              borderRadius: new BorderRadius.only(
                topLeft: const Radius.circular(40.0),
                topRight: const Radius.circular(40.0),
              )
            ),
            child: new Center(
            child: new Text("Hi modal sheet"),
           )
         ),
        ),
Posted by: Guest on May-01-2020
0

different border radius on container flutter

Container(
              decoration: BoxDecoration(
                  color: gray,
                  borderRadius: BorderRadius.only(
                    bottomLeft: Radius.circular(20),
                    bottomRight: Radius.circular(20),
                  )),
              child: ...,
            ),
Posted by: Guest on May-05-2021

Code answers related to "flutter rounded edge container"

Browse Popular Code Answers by Language