ماهو ال Scaffold .
هي Widget توفر المكونات الأساسية في تصميم التطبيق وفق معاير ال material design التي قامت بأنشائها Google ومن المكونات Scaffold
·
AppBar
·
BottomAppBar,
·
FloatingActionButton
·
Drawer
·
BottomNavigationBar
·
BottomSheet
·
body
طريقة استخدام ال Scaffold
Widget build(BuildContext context) {
return
Scaffold(
appBar: AppBar(
title: Text('Sample Code'),
),
body: Center(
child: Text('You have pressed the
button $_count times.'),
),
bottomNavigationBar: BottomAppBar(
child: Container(height: 50.0,),
),
floatingActionButton: FloatingActionButton(
onPressed: () => setState(() {
_count++;
}),
tooltip: 'Increment Counter',
child: Icon(Icons.add),
),
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
);
}
الف رحمة على والديك
ردحذف