import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(title: const Text('Lorem')), body: Column( children: [ Row( children: [ Container( color: Colors.yellow, padding: const EdgeInsets.all(10), child: const Text('Lorem ipsum dolor est amat')), Container( color: Colors.yellow, padding: const EdgeInsets.all(10), child: const Text('Lorem ipsum dolor est amat')), ], ), Container( color: Colors.yellow, padding: const EdgeInsets.all(10), child: const Text('Lorem ipsum dolor est amat')), ], ) ) ); } }