buildCreateAccountButton static method

Widget buildCreateAccountButton()

Implementation

static Widget buildCreateAccountButton() {
  return CustomButton(
    text: "Download the application ",
    onPressed: () {},
    isOutlined: true,
    suffixIcon: const Icon(Icons.download),
  );
}