Skip to content

Latest commit

 

History

History
26 lines (26 loc) · 643 Bytes

File metadata and controls

26 lines (26 loc) · 643 Bytes

Flutter-Layout-Cheat-Sheet

This repo includes identified Flutter Layouts which anyone can refer as their layout cheat sheet. Image.asset( 'images/lake.jpg', fit: BoxFit.cover, ),Icon( Icons.star, color: Colors.red[500], ),class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return Container( decoration: BoxDecoration(color: Colors.white), child: Center( child: Text( 'Hello World', textDirection: TextDirection.ltr, style: TextStyle( fontSize: 32, color: Colors.black87, ), ), ), ); } }