"<p>Welcome to Flutter Widgets Playlist By DevBrains.</p> <p>In this video, we will discover Container Widget's main functionalities and why we need to implement this widget in our Flutter application. Also, we will see some useful properties that we need to know in order to be able to write our Container Widget.</p> <p>Here is the example shown in the video:</p> <pre> <code>import 'package:flutter/material.dart'; // ignore_for_file: prefer_const_constructors void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: Scaffold( appBar: AppBar( title: Text("Container Widget"), ), body: SafeArea( child: Column( children: [ Container( decoration: BoxDecoration( color: Colors.amber, borderRadius: BorderRadius.circular(8.0), ), width: 200, height: 150, margin: EdgeInsets.all(100), padding: EdgeInsets.all(15), alignment: Alignment.center, //transform: Matrix4.rotationZ(0.2), child: const Text( "Simple Text", style: TextStyle( color: Colors.black, fontSize: 54.0), ), ), ], ), ), ), ); } }</code> </pre>"