Flutter دو اہم ڈیزائن سسٹمز widget سیٹس کے طور پر فراہم کرتا ہے: Material (Google کی Material Design، Android سٹائل) اور Cupertino (iOS سٹائل)۔ یہ آپ کو ہر platform کی ڈیزائن language سے مطابقت رکھنے والے UIs بنانے دیتے ہیں، یا ایک مستقل custom look بناتے ہیں۔
Material widgets (Material Design)
// Material widgets follow Google's Material Design (Android look, but usable anywhere)
MaterialApp( // the app root for Material apps
home: Scaffold( // Material page structure
appBar: AppBar(title: Text('Material')),
body: Center(
child: ElevatedButton( // Material button
onPressed: () {},
child: Text('Material Button'),
),
),
floatingActionButton: FloatingActionButton(onPressed: () {}),
),
)
// Material widgets: Scaffold, AppBar, ElevatedButton, Card, FloatingActionButton, etc.
