copyOnTap method

Future<void> copyOnTap(
  1. int ayahUQNumber
)

-------- onTap -------- شرح: نسخ نص التفسير مع الآية Explanation: Copy tafsir text with ayah

Implementation

/// شرح: نسخ نص التفسير مع الآية
/// Explanation: Copy tafsir text with ayah
Future<void> copyOnTap(int ayahUQNumber) async {
  await Clipboard.setData(ClipboardData(
          text:
              '﴿${ayahTextNormal.value}﴾\n\n${tafseerList[ayahUQNumber].tafsirText.customTextSpans()}'))
      .then(
          (value) => _ToastUtils().showToast(Get.context!, 'copyTafseer'.tr));
}