Answers for "add border radius to container only on the top corners flutter"

6

flutter container border radius only left

borderRadius: BorderRadius.only(
          topRight: Radius.circular(10.0),
          bottomRight: Radius.circular(10.0)),
Posted by: Guest on February-08-2021
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

Code answers related to "add border radius to container only on the top corners flutter"

Browse Popular Code Answers by Language