facebook twitter hatena line email

Flutter/UI/ListTile

提供: 初心者エンジニアの簡易メモ
2019年11月23日 (土) 02:17時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==ListTileとは== ListViewの1行を表す。 ==小技== heightで高さ幅を小さくできる。 <pre> new Container( height: 56.0,...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

ListTileとは

ListViewの1行を表す。

小技

heightで高さ幅を小さくできる。

new Container(
                height: 56.0,
                color: Colors.white,
                child: Row(
                  children: <Widget>[
                    Expanded(
                      child: new ListTile(
                        leading: new CircleAvatar(
                          backgroundColor: StaticFunction.toColorByStr(
                              listdatas[index].color),
                          child: new Text(listdatas[index].thumbtitle,),
                          foregroundColor: Colors.white,
                        ),
                        title: new Text(listdatas[index].title,
                          style: TextStyle(
                              locale: Locale("ja", "JP")
                          ),
                        ),
                        subtitle: new Text(
                          listdatas[index].subtitle,
                          style: TextStyle(
                            locale: Locale("ja", "JP"),
                            fontSize: 10,
                          ),
                        ),
                      ),
                    ),
                  ],
                ),
              ),