Added floating action button

This commit is contained in:
Leandro 2024-05-19 21:07:56 +02:00
parent dfcfda19b3
commit 2445de13af

View file

@ -20,7 +20,12 @@ class WoolScreen extends StatelessWidget {
);
} else {
// Hier können Sie den Inhalt basierend auf den geladenen Daten anzeigen
return Column(
return Scaffold(
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add),
),
body: Column(
children: [
Expanded(
child: ListView.builder(
@ -46,6 +51,7 @@ class WoolScreen extends StatelessWidget {
),
),
],
),
);
}
},