Answers for "the container widget in flutter"

2

flutter container

Container(
            alignment: Alignment.center,
            child: Text('Container'),
            width: 200.0,
            height: 200.0,
            decoration: BoxDecoration(
              color: Colors.purple[200],
              borderRadius: BorderRadius.circular(60.0)              
            )
          ),
Posted by: Guest on August-29-2021
0

flutter container

Center(
  child: Container(
    margin: const EdgeInsets.all(10.0),
    color: Colors.amber[600],
    width: 48.0,
    height: 48.0,
  ),
)
Posted by: Guest on April-02-2021

Code answers related to "the container widget in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language