title app

This commit is contained in:
Valentin CZERYBA 2024-06-26 22:32:27 +02:00
parent 0c47c943f9
commit 4804c8bc01

View File

@ -83,16 +83,22 @@ class _MyHomePageState extends State<ListItemMenu> {
// function to display fetched data on screen
Widget buildPosts(List<Events> posts) {
// ListView Builder to show data in a list
return ListView.separated(
itemCount: posts.length,
itemBuilder: (context, index) {
final post = posts[index];
return ListTile(
title: Text('${post.name!}'), subtitle: Text('${post.place!}'));
},
separatorBuilder: (context, index) {
return Divider();
},
);
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text("Item list menu"),
),
body: ListView.separated(
itemCount: posts.length,
itemBuilder: (context, index) {
final post = posts[index];
return ListTile(
title: Text('${post.name!}'), subtitle: Text('${post.place!}'));
},
separatorBuilder: (context, index) {
return Divider();
},
));
}
}