Listview sort by name in Flutter || Amazevalley
In this tutorial you will learn how to search a particular item in listview in flutter, we have create a list with different name of actors, after display the list we will find the particular actor name by search his name, when you start to type a character list will sort automatically and display the items which contains the character, import 'package:flutter/material.dart' ; import 'package:folding_cell/folding_cell.dart' ; void main () => runApp( new Directory ()) ; class Directory extends StatelessWidget { // This widget is the root of your application. @override Widget build (BuildContext context) { return MaterialApp ( debugShowCheckedModeBanner: false , home: MyHomePage () , ) ; } } class MyHomePage extends StatefulWidget { @override _MyHomePageState createState () => _MyHomePageState () ; } class _MyHomePageState extends State<MyHomePage> with SingleTickerProviderStateMixin { TextEditingController e