Features
Getting started
Usage
@override
Widget build(BuildContext context) {
return Column(
children: [
Container(
padding: const EdgeInsets.all(20),
decoration: const BoxDecoration(
color: Colors.orangeAccent
),
child: const Text("HELLO BABY !",style: TextStyle(
color: Colors.grey
)),
),
const SizedBox(height: 10,),
Container(
padding: const EdgeInsets.all(20),
decoration: const BoxDecoration(
color: Colors.orangeAccent
),
child: Text(widget.title,style: const TextStyle(
color: Colors.grey
)),
),
],
);
}
Additional information
returns the container !