1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| e.g.
Container( height: 100, margin: EdgeInsets.all(10), child: PhysicalModel( color: Colors.transparent, borderRadius: BorderRadius.circular(6), clipBehavior: Clip.antiAlias, child: PageView( children: <Widget>[ _item('page1', Colors.orange), _item('page1', Colors.pink), _item('page1', Colors.yellow) ], ), ) )
_item(String title, Color color) { return Container( alignment: Alignment.center, decoration: BoxDecoration(color: color), child: Text(title, style: TextStyle(fontSize: 22, color: Colors.white)), ); }
|