Flutter UI Flashcards
1
Q
Welches Widget ist AppBar übergeordnet?
A
Scaffold
2
Q
Definiere AppBar mit dem Titel ‘Titel’
A
AppBar(title: Text(‘Titel’))
3
Q
Wie wird in der AppBar ein Menu-Icon hinzugefügt?
A
leading: IconButton(
icon: Icon(icon: Icons.menu, sematicLabel: ‘menu’),
onPressed: () {}
)
4
Q
Füge zur AppBar Actions hinzu
A
actions: [
IconButton(icon: Icons.search, semanticLabel: ‘search’,
onPressed: () {print ‘search’}),
]