customOutlinedButton static method
Implementation
static Widget customOutlinedButton(
String title, Color lineColor, Function onPressed, Color textColor) {
return OutlinedButton(
style: ButtonStyle(
side: MaterialStateProperty.all(BorderSide(color: lineColor))),
onPressed: onPressed as void Function()?,
child: Text(
title,
style: TextStyle(color: textColor),
),
);
}