import 'package:container_demo/app_screens/Home.dart';
import 'package:flutter/material.dart'; // material file import
void main()
{
runApp(MaterialApp(
title: "Exploring UI Widgets",
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(title: Text("My First App")),
body: getListView(), // list view method called
),
));
}
Widget getListView()
{
var listView=ListView(children: <Widget>[
ListTile(
leading: Icon(Icons.landscape),
title: Text("Lanscape"),
subtitle: Text("Buatiful View"),
trailing: Icon(Icons.wb_sunny),
onTap: (){
debugPrint("Landscape Printied");
},
),
ListTile(
leading: Icon(Icons.landscape),
title: Text("Portrait"),
subtitle: Text("Buatiful View"),
trailing: Icon(Icons.wb_sunny),
onTap:() {
debugPrint("Potrait Clicled");
},
)
],);
return listView;
}