wTitle method

Widget wTitle(
  1. String text
)

Implementation

Widget wTitle(String text) {
  return Material(
    child: ListTile(
      title: Text(text),
      onTap: () => debugPrint(text),
    ),
  );
}