getCopyButton method

Widget getCopyButton()

Implementation

Widget getCopyButton() {
  return GestureDetector(
    onTap: () {},
    child: Container(
      width: 50,
      height: 50,
      decoration: BoxDecoration(
        color: Colors.green,
        borderRadius: BorderRadius.circular(25),
      ),
      child: const Icon(
        Icons.copy,
        color: Colors.white,
      ),
    ),
  );
}