buttonPlus function

dynamic buttonPlus(
  1. dynamic callback()
)

Implementation

buttonPlus(Function() callback){
  return Stack(
    children: <Widget>[
      Container(
        height: 60,
        width: 60,
        child: IBoxCircle(child: Icon(Icons.add, size: 30, color: Colors.black,)),
      ),
      Container(
        height: 60,
        width: 60,
        child: Material(
            color: Colors.transparent,
            shape: CircleBorder(),
            clipBehavior: Clip.hardEdge,
            child: InkWell(
              splashColor: Colors.grey[400],
              onTap: callback,
            )),
      )
    ],
  );
}