fitur method
Implementation
Widget fitur(String fitur, assets, Function() onTap) {
return GestureDetector(
onTap: onTap,
child: Container(
margin: EdgeInsets.all(8),
child: Column(
children: [
Icon(assets),
DefaultText(
textLabel: fitur,
)
],
),
),
);
}