pubspec.yaml:
common_flutter_widgets:
git: https://github.com/tomavelev/common_flutter_widgets.git
//hello world:
@override
Widget build(BuildContext context) => CApp(
home: CScaffold(
body: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
CInkWell(
child: const Text("data"),
onPressed: () {},
),
],
),
)),
);