“Flattern Vollbildunterblatt flattern” Code-Antworten

Flattern Vollbildunterblatt flattern

showModalBottomSheet(
	...
	isScrollControlled: true,
)
MrNtlu

Flatternbodenblatt

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

Ähnliche Antworten wie “Flattern Vollbildunterblatt flattern”

Fragen ähnlich wie “Flattern Vollbildunterblatt flattern”

Weitere verwandte Antworten zu “Flattern Vollbildunterblatt flattern” auf Dart

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen