Answers for "ListTile with shadow flutter"

0

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",
        ),
      ),
Posted by: Guest on July-02-2021

Code answers related to "ListTile with shadow flutter"

Browse Popular Code Answers by Language