Soláthraíonn Flutter dhá phríomhchóras dearaidh mar shraithe giuirléidí: Material (Material Design Google, stíl Android) agus Cupertino (stíl iOS). Tugann siad deis duit UIs a thógáil a oireann do theanga dearaidh gach ardáin, nó radharc comhsheasmhach saincheaptha.
Giuirléidí Material (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.
