xyzbilal

Results 19 comments of xyzbilal

when I add `AudioServiceBackground.setQueue` I am getting error. my function to get dynamic list from api ; ``` await RadioProvider().getRadios().then((list){ if(list.length>0){ otherRadioList.addAll(list); latestItem.value =list[0]; } startService(); }); ``` my function...

Alright. I am not so much familiar with isolates or backround services and I could'nt get the whole point of what written before but, I solved my problem with logic...

in android part of codestartRingtone method I modified part of ` if (audioManager.getStreamVolume(AudioManager.STREAM_RING) == 0) {` like below; ``` if (audioManager.getStreamVolume(AudioManager.STREAM_RING) == 0) { Log.d(TAG, "startRingtone(): ringer is silent. leave...

I tried to debugprint ` onSinglePressMapClickListener`, `onGeoPointClickListener`,` onRegionIsChangingListener ` events. `onSinglePressMapClickListener `is called when I clicked to map but others never called in `osm_controller`. I guess it is not related...

use `incall.stopRingback();`

I also have similar problem. any idea how to solve this problem. my build log below ; ``` Build command failed. Error while executing process /Users/bilalsimsek/Library/Android/sdk/cmake/3.10.2.4988404/bin/ninja with arguments {-C /Users/bilalsimsek/Desktop/janus-mobile-sdk/platforms/android/janus-client/.cxx/cmake/debug/x86...

add or set `getImmediateSuggestions: true,` in your TypeAheadField ``` TypeAheadField( key: UniqueKey(), getImmediateSuggestions: true, . . . ```

this error produced while trying to add marker. ``` [VERBOSE-2:dart_vm_initializer.cc(41)] Unhandled Exception: 'package:flutter/src/rendering/proxy_box.dart': Failed assertion: line 3379 pos 12: '!debugNeedsPaint': is not true. proxy_box.dart:3379 #0 _AssertionError._doThrowNew (dart:core-patch/errors_patch.dart:51:61) #1 _AssertionError._throwNew (dart:core-patch/errors_patch.dart:40:5)...

its long time passed but if you want can you try this repository. I just upgraded to null safety and added the parameters. [https://github.com/xyzbilal/gpt_3_dart/tree/add_penalty](https://github.com/xyzbilal/gpt_3_dart/tree/add_penalty) you can add pubspec.yaml like below...