Click on the images and match the cell images! Memory Game
Visit : https://dartpad.dev/482dbd401031ab9f74b0fa3de705ad2f
Click on the images and match the cell images! Memory Game
Visit : https://dartpad.dev/482dbd401031ab9f74b0fa3de705ad2f
| /// A hack to copy a string to the clipboard. | |
| bool _copyToClipboardHack(String text) { | |
| final textarea = new TextAreaElement(); | |
| document.body.append(textarea); | |
| textarea.style.border = '0'; | |
| textarea.style.margin = '0'; | |
| textarea.style.padding = '0'; | |
| textarea.style.opacity = '0'; | |
| textarea.style.position = 'absolute'; | |
| textarea.readOnly = true; |