Search
 
SCRIPT & CODE EXAMPLE
 

DART

flutter listtile

ListTile(
      title: Text('ListTile'),
      isThreeLine: true,
      subtitle: Text('Secondary text
Tertiary text'),
      leading: Icon(Icons.label),
      trailing: Text('Metadata'),
    ),
Comment

flutter list tile

ListTile(
  leading: const Icon(Icons.flight_land),
  title: const Text("Trix's airplane"),
  subtitle: const Text('The airplane is only in Act II.'),
  onTap: () => print("ListTile")
)
Comment

flutter ListTile

// using card
Card(
          elevation: 5,
          child: ListTile(
            leading: Icon(Icons.icecream),
            title: Text('I like icecream'),
            subtitle: Text('Icream is good for health'),
            trailing: Icon(Icons.food_bank),
          ),
        ),
        
// using ListView.builder
ListView.builder(
      itemCount: dummyList.length,
      itemBuilder: (context, index) => Card(
        elevation: 6,
        margin: EdgeInsets.all(10),
        child: ListTile(
          leading: CircleAvatar(
            child: Text(dummyList[index]["id"].toString()),
            backgroundColor: Colors.purple,
          ),
          title: Text(dummyList[index]["title"]),
          subtitle: Text(dummyList[index]["subtitle"]),
          trailing: Icon(Icons.add_a_photo),
        ),
      ),
    )
Comment

flutter ListTile

Card(
          elevation: 5,
          child: ListTile(
            leading: Icon(Icons.icecream),
            title: Text('I like icecream'),
            subtitle: Text('Icream is good for health'),
            trailing: Icon(Icons.food_bank),
          ),
        ),
Comment

listtile flutter

          ListTile(
                    tileColor: Colors.white,
                    leading: Image(
                      image: NetworkImage(
                          'https://jardin-secrets.com/image.php?/12435/photo-dracaena-fragrans_krzysztof-ziarnek.jpg'),
                    ),
                    title: Text("Dragonnier"),
                    subtitle: Text("Dracaena"),
                    isThreeLine: true,
                    trailing: Icon(Icons.more_vert)
                ),
Comment

PREVIOUS NEXT
Code Example
Dart :: flutter pass onchanged callback in arguments 
Dart :: uinstall php server on ubuntu 
Dart :: flutter cupertinoapp 
Dart :: how to get isoCode based on location in flutter 
Dart :: int.parse flutter 
Dart :: flutter dart imagepicker quality reduce resize 
Dart :: flutter calander last date + 6 days 
Dart :: using flutter google places 
Dart :: flutter timestamp to datetime 
Dart :: flutter component position absolute 
Dart :: flutter icondata 
Dart :: dart regex,regex dart 
Dart :: flutter custom error widget 
Dart :: AnimatedCrossFade 
Dart :: dart callback function 
Dart :: strapi starters 
Dart :: dart then method 
Dart :: dark mode in flutter packages 
Dart :: dart program name 
Dart :: perform async function in widget build method 
Dart :: tab splash hide flutter 
Dart :: flutter wait 2 seconds 
Dart :: flutter sliver app bar remove top padding 
Dart :: How to call a method on the State Notifier Provider 
Dart :: flutter colour hex 
Swift :: swift notifications mac 
Swift :: delete padding list swiftui 
Swift :: swift function with return value 
Swift :: uipageviewcontroller next button swift 
Swift :: swiftui list navigation link 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =