Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

ListTile with shadow flutter

    Material(
        elevation: 20,
        shadowColor:Colors.black.withAlpha(70),
        shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)),
        child: ListTile(
          onTap: () => {},
          tileColor: Theme.of(context).cardColor,
          shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)),
          title: "Title",
          subtitle: "subtitle",
        ),
      ),
 
PREVIOUS NEXT
Tagged: #ListTile #shadow #flutter
ADD COMMENT
Topic
Name
9+9 =