“Lembar bawah layar penuh berkibar” Kode Jawaban

Lembar bawah layar penuh berkibar

showModalBottomSheet(
	...
	isScrollControlled: true,
)
MrNtlu

Lembar bawah yang bergetar

showModalBottomSheet(
    context: context,
    builder: (context) {
      return Column(
        mainAxisSize: MainAxisSize.min,
        children: <Widget>[
          ListTile(
            leading: new Icon(Icons.photo),
            title: new Text('Photo'),
            onTap: () {
              Navigator.pop(context);
            },
          ),
          ListTile(
            leading: new Icon(Icons.music_note),
            title: new Text('Music'),
            onTap: () {
              Navigator.pop(context);
            },
          ),
          ListTile(
            leading: new Icon(Icons.videocam),
            title: new Text('Video'),
            onTap: () {
              Navigator.pop(context);
            },
          ),
          ListTile(
            leading: new Icon(Icons.share),
            title: new Text('Share'),
            onTap: () {
              Navigator.pop(context);
            },
          ),
        ],
      );
    });
Panicky Pigeon

Jawaban yang mirip dengan “Lembar bawah layar penuh berkibar”

Pertanyaan yang mirip dengan “Lembar bawah layar penuh berkibar”

Lebih banyak jawaban terkait untuk “Lembar bawah layar penuh berkibar” di Dart

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya