Achieve the World’s Most Prestigious Certifications and Unlock Top-Paying Careers! Get Certified in the Industry’s Leading Programs Today.
🚀 DevOps Certified Professional 🚀 SRE Certified Professional 🚀 DevSecOps Certified Professional 🚀 MLOps Certified Professional
📅 Starting: 1st of Every Month 🤝 +91 8409492687 | 🤝 +1 (469) 756-6329 🔍 Contact@DevOpsSchool.com

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.

Get Started Now!

How to use search textbox and dropdown inside listview

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'),
),
],
),
),
);
}
}
view raw listtile1 hosted with ❤ by GitHub

put textfield inside listtile see in below code

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))
)
],
),
),
view raw list3 hosted with ❤ by GitHub

Put dropdown inside listtile

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

Related Posts

Subscribe
Notify of
guest


0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
Artificial Intelligence