{"id":404793,"date":"2023-10-10T12:20:17","date_gmt":"2023-10-10T12:20:17","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=404793"},"modified":"2026-03-06T12:25:28","modified_gmt":"2026-03-06T12:25:28","slug":"multiple-search-selection-in-flutter","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/","title":{"rendered":"Multiple Search Selection In Flutter"},"content":{"rendered":"\n<p>In this blog, we&#8217;ll explore how to Implement Multiple Search Selection In Flutter.<\/p>\n\n\n\n<p>Flutter is a flexible and powerful framework for building <a href=\"https:\/\/webkul.com\/cross-platform-app-development\/\">cross-platform mobile applications<\/a>.<\/p>\n\n\n\n<p>users to search for items and select multiple options, making it useful for various scenarios like selecting tags, categories, or filtering data.<\/p>\n\n\n\n<p>You may also check our&nbsp;<a href=\"https:\/\/mobikul.com\/flutter-app-development\/\">flutter app <\/a><a href=\"https:\/\/mobikul.com\/flutter-app-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">development<\/a> company page.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Implementation:-<\/h2>\n\n\n\n<p>First we need to create a new flutter project and add the following dependencies in the pubspec.yaml file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">dependencies:\nflutter:\nsdk: flutter\nmultiple_search_selection: ^2.5.3<\/pre>\n\n\n\n<p>Now, run the command \u201cflutter pub get\u201d to add the dependencies.<\/p>\n\n\n\n<p>Add the following package to your class.<\/p>\n\n\n\n<p>import &#8216;package:multiple_search_selection\/multiple_search_selection.dart&#8217;;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">We will first create MultipleSearchSelection:<\/h2>\n\n\n\n<p>We create a Stateful Widget Multiple Search Selection that holds the state of our widget.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">MultipleSearchSelection&lt;T&gt;.creatable(\n            title: title;\n            createOptions: CreateOptions(\n              createItem: (text) {\n                return City(name: text,);\n              },\n              createItemBuilder: (text) =&gt; Align(\n                alignment: Alignment.centerLeft,\n                child: Padding(\n                  padding: const EdgeInsets.all(8.0),\n                  child: Text(&#039;Create &quot;$text&quot;&#039;),\n                ),\n              ),\n            ),\n            items: items,\n            fieldToCheck: (c) {\n              return c.name;\n            },\n            itemBuilder: (country, index) {\n              return item list view;\n            },\n            pickedItemBuilder: (country) {\n              return selected item view;\n            },        \n          ),<\/pre>\n\n\n\n<p><strong>Let&#8217;s important parts of this code:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong><code>MultipleSearchSelection&lt;T&gt;: <\/code><\/strong><br>This the custom widget&#8217;s name, and it takes a type parameter T to specify the type of items it works with.<br><\/li>\n\n\n\n<li><code><strong>title<\/strong><\/code>:<br> It appears to be a title for the search and selection component.<br><\/li>\n\n\n\n<li><code><strong>createOptions<\/strong><\/code>: <br>This is a configuration for creating new items within the search selection component. It includes:\n<ul class=\"wp-block-list\">\n<li><code><strong>createItem<\/strong><\/code>: <br>A function that takes <code>text<\/code> as input and appears to create a new item (e.g., a <code>City<\/code> with the given name).<\/li>\n\n\n\n<li><code><strong>createItemBuilder<\/strong><\/code>:<br> A function that returns a widget for displaying the newly created item.<br><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><code><strong>items<\/strong>:<\/code><br> It seems to be the list of items  that the user can search through and select from.<br><\/li>\n\n\n\n<li><code><strong>fieldToCheck<\/strong><\/code>: <br>This is a function that checks a property of each item to match against the search input.<br><\/li>\n\n\n\n<li><code><strong>itemBuilder<\/strong><\/code>:<br>A function that takes an item  and an index and should return a widget to display each item in the list.<br><\/li>\n\n\n\n<li><code><strong>pickedItemBuilder<\/strong><\/code>: <br>A function that takes a picked item and should return a widget to display the selected item.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">complete code:-<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\">import &#039;package:flutter\/material.dart&#039;;\nimport &#039;package:multiple_search_selection\/helpers\/create_options.dart&#039;;\nimport &#039;package:multiple_search_selection\/multiple_search_selection.dart&#039;;\n\nclass SearchScreen extends StatefulWidget {\n  const SearchScreen({\n    Key? key,\n  }) : super(key: key);\n\n  @override\n  State&lt;SearchScreen&gt; createState() =&gt; _SearchScreenState();\n}\n\nclass _SearchScreenState extends State&lt;SearchScreen&gt; {\n  List&lt;City&gt; cities = &#091;];\n\n  @override\n  void initState() {\n    cities = &#091;\n      City(name: &#039;Mumbai&#039;),\n      City(name: &#039;Delhi&#039;),\n      City(name: &#039;Bangalore&#039;),\n      City(name: &#039;Chennai&#039;),\n      City(name: &#039;Kolkata&#039;),\n      City(name: &#039;Hyderabad&#039;),\n      City(name: &#039;Ahmedabad&#039;),\n      City(name: &#039;Jaipur&#039;),\n      City(name: &#039;Lucknow&#039;),\n      City(name: &#039;Surat&#039;),\n      City(name: &#039;Kanpur&#039;),\n      City(name: &#039;Nagpur&#039;),\n      City(name: &#039;Patna&#039;),\n      City(name: &#039;Indore&#039;),\n      City(name: &#039;Thane&#039;),\n      City(name: &#039;Bhopal&#039;),\n      City(name: &#039;Visakhapatnam&#039;),\n      City(name: &#039;Vadodara&#039;),\n      City(name: &#039;Miami&#039;),\n      City(name: &#039;New York&#039;),\n      City(name: &#039;Los Angeles&#039;),\n      City(name: &#039;Chicago&#039;),\n      City(name: &#039;San Francisco&#039;),\n      City(name: &#039;Miami&#039;),\n      City(name: &#039;Philadelphia&#039;),\n      City(name: &#039;San Antonio&#039;),\n      City(name: &#039;San Diego&#039;),\n      City(name: &#039;Dallas&#039;),\n      City(name: &#039;San Jose&#039;),\n      City(name: &#039;Austin&#039;),\n      City(name: &#039;Jacksonville&#039;),\n      City(name: &#039;Indianapolis&#039;),\n      City(name: &#039;Columbus&#039;),\n      City(name: &#039;Fort Worth&#039;),\n      City(name: &#039;Charlotte&#039;),\n      City(name: &#039;Seattle&#039;),\n      City(name: &#039;Denver&#039;),\n      City(name: &#039;Washington, D.C.&#039;),\n      City(name: &#039;Boston&#039;),\n      City(name: &#039;El Paso&#039;),\n      City(name: &#039;Nashville&#039;),\n      City(name: &#039;Oklahoma City&#039;),\n      City(name: &#039;Pune&#039;),\n      City(name: &#039;Kathmandu&#039;),\n      City(name: &#039;Pokhara&#039;),\n      City(name: &#039;Lalitpur&#039;),\n      City(name: &#039;Bhaktapur&#039;),\n      City(name: &#039;Biratnagar&#039;),\n      City(name: &#039;Butwal&#039;),\n      City(name: &#039;Nepalgunj&#039;),\n      City(name: &#039;Dharan&#039;),\n      City(name: &#039;Hetauda&#039;),\n      City(name: &#039;Birgunj&#039;),\n      City(name: &#039;Janakpur&#039;),\n      City(name: &#039;Dhangadhi&#039;),\n      City(name: &#039;Bharatpur&#039;),\n      City(name: &#039;Siddharthanagar&#039;),\n      City(name: &#039;Ghorahi&#039;),\n      City(name: &#039;Dhankuta&#039;),\n      City(name: &#039;Ilam&#039;),\n      City(name: &#039;Birendranagar&#039;),\n      City(name: &#039;Tansen&#039;),\n      City(name: &#039;Rajbiraj&#039;),\n    ];\n    super.initState();\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      debugShowCheckedModeBanner: false,\n      home: Scaffold(\n        appBar: AppBar(\n          title: const Text(&quot;Multiple Search Selection&quot;),\n        ),\n        body: SingleChildScrollView(\n          child: MultipleSearchSelection&lt;City&gt;.creatable(\n            title: Padding(\n              padding: const EdgeInsets.all(12.0),\n              child: Text(\n                &#039;City&#039;,\n                style: Theme.of(context).textTheme.bodyMedium?.copyWith(\n                      fontSize: 22,\n                      fontWeight: FontWeight.bold,\n                    ),\n              ),\n            ),\n            showClearSearchFieldButton: true,\n            createOptions: CreateOptions(\n              createItem: (text) {\n                return City(\n                  name: text,\n                );\n              },\n              createItemBuilder: (text) =&gt; Align(\n                alignment: Alignment.centerLeft,\n                child: Padding(\n                  padding: const EdgeInsets.all(8.0),\n                  child: Text(&#039;Create &quot;$text&quot;&#039;),\n                ),\n              ),\n              pickCreatedItem: true,\n            ),\n            items: cities,\n            fieldToCheck: (c) {\n              return c.name;\n            },\n            itemBuilder: (country, index) {\n              return Padding(\n                padding: const EdgeInsets.all(6.0),\n                child: Container(\n                  decoration: BoxDecoration(\n                    borderRadius: BorderRadius.circular(6),\n                    color: Colors.white,\n                  ),\n                  child: Padding(\n                    padding: const EdgeInsets.symmetric(\n                      vertical: 20.0,\n                      horizontal: 12,\n                    ),\n                    child: Text(country.name),\n                  ),\n                ),\n              );\n            },\n            pickedItemBuilder: (country) {\n              return Container(\n                decoration: BoxDecoration(\n                    color: Colors.white,\n                    border: Border.all(color: Colors.grey&#091;400]!),\n                    borderRadius: BorderRadius.circular(4)),\n                child: Padding(\n                  padding: const EdgeInsets.all(8),\n                  child: Text(country.name),\n                ),\n              );\n            },\n            selectAllButton: Padding(\n              padding: const EdgeInsets.all(12.0),\n              child: DecoratedBox(\n                decoration: BoxDecoration(\n                    border: Border.all(color: Colors.grey),\n                    borderRadius: BorderRadius.circular(4)),\n                child: Padding(\n                  padding: const EdgeInsets.all(8.0),\n                  child: Text(\n                    &#039;Select All&#039;,\n                    style: Theme.of(context).textTheme.bodyMedium,\n                  ),\n                ),\n              ),\n            ),\n            clearAllButton: Padding(\n              padding: const EdgeInsets.all(12.0),\n              child: DecoratedBox(\n                decoration: BoxDecoration(\n                    border: Border.all(color: Colors.grey),\n                    borderRadius: BorderRadius.circular(4)),\n                child: Padding(\n                  padding: const EdgeInsets.all(8.0),\n                  child: Text(\n                    &#039;Clear All&#039;,\n                    style: Theme.of(context).textTheme.bodyMedium,\n                  ),\n                ),\n              ),\n            ),\n            caseSensitiveSearch: false,\n            fuzzySearch: FuzzySearch.none,\n            itemsVisibility: ShowedItemsVisibility.alwaysOn,\n            showSelectAllButton: true,\n            maximumShowItemsHeight: 525,\n          ),\n        ),\n      ),\n    );\n  }\n}\n\nclass City {\n  final String name;\n\n  City({required this.name});\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Output:-<\/h2>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"2340\" style=\"aspect-ratio: 1080 \/ 2340;\" width=\"1080\" controls src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/untitled-3-1.mp4\"><\/video><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion:-<\/h2>\n\n\n\n<p>We have done with implementation of&nbsp;Multiple Search Selection In Flutter.<\/p>\n\n\n\n<p>Check here for more interesting blogs \u2013&nbsp;<a href=\"https:\/\/mobikul.com\/blog\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/mobikul.com\/<\/a><a href=\"https:\/\/mobikul.com\/blog\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">blog<\/a><a href=\"https:\/\/mobikul.com\/blog\/\" target=\"_blank\" rel=\"noreferrer noopener\">\/<\/a><\/p>\n\n\n\n<p>Hope this blog helped you to better understand the implementation of Multiple Search Selection In Flutter.<\/p>\n\n\n\n<p>Thanks for reading this blog \u2764\ufe0f<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">References:-<\/h2>\n\n\n\n<p><a href=\"https:\/\/pub.dev\/packages\/multiple_search_selection\">https:\/\/pub.dev\/packages\/<\/a><a href=\"https:\/\/pub.dev\/packages\/multiple_search_selection\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">multiple_search_selection<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><br><\/h2>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we&#8217;ll explore how to Implement Multiple Search Selection In Flutter. Flutter is a flexible and powerful framework for building cross-platform mobile applications. users to search for items and select multiple options, making it useful for various scenarios like selecting tags, categories, or filtering data. You may also check our&nbsp;flutter app development company <a href=\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":516,"featured_media":404851,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1864],"tags":[12989],"class_list":["post-404793","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mobikul","tag-flutter"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Multiple Search Selection In Flutter - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Multiple search selections helps users find items and select multiple options, making it useful for different scenarios.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Multiple Search Selection In Flutter - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Multiple search selections helps users find items and select multiple options, making it useful for different scenarios.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-10T12:20:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-06T12:25:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1-1200x675.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sakshi Rai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sakshi Rai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/\"},\"author\":{\"name\":\"Sakshi Rai\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/494f4a6febbdb69ffe87f1b7cf0c46ba\"},\"headline\":\"Multiple Search Selection In Flutter\",\"datePublished\":\"2023-10-10T12:20:17+00:00\",\"dateModified\":\"2026-03-06T12:25:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/\"},\"wordCount\":349,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1.png\",\"keywords\":[\"Flutter\"],\"articleSection\":[\"Mobikul\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/\",\"url\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/\",\"name\":\"Multiple Search Selection In Flutter - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1.png\",\"datePublished\":\"2023-10-10T12:20:17+00:00\",\"dateModified\":\"2026-03-06T12:25:28+00:00\",\"description\":\"Multiple search selections helps users find items and select multiple options, making it useful for different scenarios.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1.png\",\"width\":2240,\"height\":1260,\"caption\":\"Multiple-Search-Selection-In-Flutter-1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Multiple Search Selection In Flutter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/494f4a6febbdb69ffe87f1b7cf0c46ba\",\"name\":\"Sakshi Rai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2c12c700382e736a7084229ae8cdda5a6d6ac963df9ecc509657e4b5926f7f8b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2c12c700382e736a7084229ae8cdda5a6d6ac963df9ecc509657e4b5926f7f8b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Sakshi Rai\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/sakshirai-mk754\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Multiple Search Selection In Flutter - Webkul Blog","description":"Multiple search selections helps users find items and select multiple options, making it useful for different scenarios.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/","og_locale":"en_US","og_type":"article","og_title":"Multiple Search Selection In Flutter - Webkul Blog","og_description":"Multiple search selections helps users find items and select multiple options, making it useful for different scenarios.","og_url":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-10-10T12:20:17+00:00","article_modified_time":"2026-03-06T12:25:28+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1-1200x675.png","type":"image\/png"}],"author":"Sakshi Rai","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sakshi Rai","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/"},"author":{"name":"Sakshi Rai","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/494f4a6febbdb69ffe87f1b7cf0c46ba"},"headline":"Multiple Search Selection In Flutter","datePublished":"2023-10-10T12:20:17+00:00","dateModified":"2026-03-06T12:25:28+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/"},"wordCount":349,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1.png","keywords":["Flutter"],"articleSection":["Mobikul"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/","url":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/","name":"Multiple Search Selection In Flutter - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1.png","datePublished":"2023-10-10T12:20:17+00:00","dateModified":"2026-03-06T12:25:28+00:00","description":"Multiple search selections helps users find items and select multiple options, making it useful for different scenarios.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/Multiple-Search-Selection-In-Flutter-1.png","width":2240,"height":1260,"caption":"Multiple-Search-Selection-In-Flutter-1"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/multiple-search-selection-in-flutter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Multiple Search Selection In Flutter"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/494f4a6febbdb69ffe87f1b7cf0c46ba","name":"Sakshi Rai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2c12c700382e736a7084229ae8cdda5a6d6ac963df9ecc509657e4b5926f7f8b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2c12c700382e736a7084229ae8cdda5a6d6ac963df9ecc509657e4b5926f7f8b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Sakshi Rai"},"url":"https:\/\/webkul.com\/blog\/author\/sakshirai-mk754\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404793","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/516"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=404793"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404793\/revisions"}],"predecessor-version":[{"id":529566,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404793\/revisions\/529566"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/404851"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=404793"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=404793"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=404793"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}