ListTILE avec ombre 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",
        ),
      ),
Expensive Earthworm