This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
final appTitle = 'Flutter Basic List Demo'; | |
return MaterialApp( | |
title: appTitle, | |
home: Scaffold( | |
appBar: AppBar( | |
title: Text(appTitle), | |
), | |
body: ListView( | |
children: <Widget>[ | |
ListTile( | |
leading: Icon(Icons.map), | |
title: Text('Map'), | |
), | |
ListTile( | |
leading: Icon(Icons.photo_album), | |
title: Text('Album'), | |
), | |
ListTile( | |
leading: Icon(Icons.phone), | |
title: Text('Phone'), | |
), | |
ListTile( | |
leading: Icon(Icons.contacts), | |
title: Text('Contact'), | |
), | |
ListTile( | |
leading: Icon(Icons.settings), | |
title: Text('Setting'), | |
), | |
], | |
), | |
), | |
); | |
} | |
} |

put textfield inside listtile see in below code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ListTile( | |
title: TextField( | |
controller: _textEditingController, | |
style: TextStyle(color: Colors.black), | |
decoration: InputDecoration( | |
prefixIcon: Icon(Icons.search), | |
border: const OutlineInputBorder(), | |
contentPadding: EdgeInsets.all(8.0), | |
hintText: 'Search by keyword', | |
), | |
), | |
trailing: Row( | |
mainAxisSize: MainAxisSize.min, | |
children: <Widget>[ | |
new FlatButton( | |
minWidth: 20, | |
height: 44, | |
textColor: Colors.white, | |
color: Colors.blueAccent, | |
onPressed: () { | |
Navigator.push( | |
context, | |
MaterialPageRoute( | |
builder: (context) => Filtertrip( | |
data: | |
_textEditingController.text), | |
), | |
); | |
}, | |
child: new Text("Search",style:TextStyle( | |
color: Colors.white, fontSize: 18),), | |
shape: Border.all(width: 1.0, color: const Color(0xff123456)) | |
) | |
], | |
), | |
), |
Put dropdown inside listtile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ListTile( | |
title: DropdownButton<String>( | |
focusColor:Colors.white, | |
//elevation: 5, | |
style: TextStyle(color: Colors.white), | |
iconEnabledColor:Colors.black, | |
items: <String>[ | |
'Android', | |
'IOS', | |
'Flutter', | |
'Node', | |
'Java', | |
'Python', | |
'PHP', | |
].map<DropdownMenuItem<String>>((String value) { | |
return DropdownMenuItem<String>( | |
value: value, | |
child: Text(value,style:TextStyle(color:Colors.black),), | |
); | |
}).toList(), | |
hint:Text( | |
"Please choose a country", | |
style: TextStyle( | |
color: Colors.black, | |
fontSize: 14, | |
fontWeight: FontWeight.w500), | |
), | |
onChanged: (String value) { | |
setState(() { | |
}); | |
}, | |
), | |
), |
Now ,output of above code is
