button method

Widget button(
  1. dynamic text,
  2. dynamic width
)

Implementation

Widget button(
    text,
    width,
    ) {
  return Container(
    width: width,
    alignment: Alignment.center,
    height: 50,
    decoration:
    BoxDecoration(color: primaryBlue, borderRadius: BorderRadius.circular(8)),
    child: Text(
      text,
      style: const TextStyle(
          fontSize: 16.0,
          fontWeight: FontWeight.w600,
          color: Color(0xffffffff)),
    ),
  );
}