You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
|
|
|
|
|
import 'package:akuCommunity/utils/headers.dart';
|
|
|
|
|
|
|
|
class ColumnActionButton extends StatelessWidget {
|
|
|
|
final VoidCallback onPressed;
|
|
|
|
final String title;
|
|
|
|
final String path;
|
|
|
|
const ColumnActionButton({Key key, this.onPressed, this.title, this.path})
|
|
|
|
: super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialButton(
|
|
|
|
minWidth: 72.w,
|
|
|
|
padding: EdgeInsets.zero,
|
|
|
|
onPressed: onPressed,
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
children: [
|
|
|
|
Image.asset(path, height: 48.w, width: 48.w),
|
|
|
|
4.hb,
|
|
|
|
title.text.size(20.sp).black.make(),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|