Answers for "how to change background color in decoration flutter"

1

how to change background color in decoration flutter

new Container(
  color: Colors.pink,
  decoration: new BoxDecoration(
    borderRadius: new BorderRadius.circular(16.0),
    color: Colors.green,
  ),
);
Posted by: Guest on December-21-2021

Code answers related to "how to change background color in decoration flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language