Taimoor Ghafar

Results 5 comments of Taimoor Ghafar

@Caldarie ``` recognitionStream = TfliteAudio.startAudioRecognition( sampleRate: 44100, bufferSize: 22016, ); audioSubscriber = recognitionStream.listen( (event) async { try { if (clapServiceStatus == true && event['recognitionResult'] == 'clap') { // stop service...

There is no need of logs. The problem is simply that when I run the code below, it only prints the msg once even if it is a stream. ```...

@Caldarie thank you

I had the same issue. I added openvpn_flutter as a local dependency and it worked. copy openvpn_flutter package from the local pub cache and paste in the root of your...

Pass your validator and set autovalidateMode on it. This solved my problem ``` IntlPhoneField( validator = (v) { if (v == null || v.number.isEmpty) { return 'Phone number is required';...