Slide 26
Slide 26 text
Independent Widget
return Scaffold(
appBar: AppBar(
title: Text("Scope Model"),
actions: [CartCount()],
),
body:(...),
floatingActionButton:
ScopedModelDescendant(
...
),
);
class CartCount extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Stack(
children: [
// Cart icon,
Align(
...
child:Text("1")),
],
),
);
}
}