“Flutter Full Screen dolny arkusz” Kod odpowiedzi

Flutter Full Screen dolny arkusz

showModalBottomSheet(
	...
	isScrollControlled: true,
)
MrNtlu

Flutter dolny arkusz

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

Odpowiedzi podobne do “Flutter Full Screen dolny arkusz”

Pytania podobne do “Flutter Full Screen dolny arkusz”

Więcej pokrewnych odpowiedzi na “Flutter Full Screen dolny arkusz” w Dart

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu