「Flutter/UI/PageView」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==PageView基本== <pre> PageView( children: <Widget>[ Container( color: Colors.pink, ), Container( color: Colors.cyan, ), Container(...」) |
(相違点なし)
|
2020年1月21日 (火) 00:13時点における版
PageView基本
PageView( children: <Widget>[ Container( color: Colors.pink, ), Container( color: Colors.cyan, ), Container( color: Colors.deepPurple, ), ], )
無限
PageView.builder( itemBuilder: (context, position) { return Container( color: position % 2 == 0 ? Colors.pink : Colors.cyan, ); }, )