Aseem Wangoo
Aseem Wangoo
seems correct. Refer to the sample code in the repo also
In case anyone having this issue in Flutter, here's what I did and worked **File android/app/build.gradle** dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'com.android.support:multidex:1.0.3' implementation 'com.google.android.gms:play-services-vision:20.1.1' implementation 'com.google.android.gms:play-services-vision-common:19.1.1' implementation 'com.google.android.gms:play-services-vision-image-label:18.0.5' implementation "com.google.firebase:firebase-ml-vision:24.1.0"...
I'm trying to use the `envied` package for storing keys. But whenever I run the ``` dart_frog dev ``` I always get this error This is my project structure: and...
Hmm, seems interesting! Do you want to try raise a PR for this?
I was having the same issue : import 'package:flutter/services.dart' show Clipboard, ClipboardData; void _onCopyPressed(String text) { Clipboard.setData(ClipboardData(text: text)); } where _onCopyPressed is a fxn, parameter text (pass the value you...