Minjae Son

Results 10 comments of Minjae Son

업데이트 이후로 저도 동작 안해서 당황스러웠습니다.. ``` kServiceAppUrlScheme [UrlScheme] kConsumerKey [ConsumerKey] kConsumerSecret [ConsumerSecret] kServiceAppName [ServiceAppName] ``` 위에서 아래로 바뀌었군요. ``` naverServiceAppUrlScheme [UrlScheme] naverConsumerKey [ConsumerKey] naverConsumerSecret [ConsumerSecret] naverServiceAppName [ServiceAppName] ```

I think, keep current response modifier for success case and add some error handler or just try catch with the bodyDecoded call https://github.com/jonataslaw/getx/blob/b797ae2b5c9039a00fd4837c6cba10751462da9a/lib/get_connect/http/src/http/io/http_request_io.dart#L62-L76

Same with me. background_locator-1.6.12 ![image](https://user-images.githubusercontent.com/22841704/149290366-1bb13be6-54f4-498e-a6b5-479d8522674a.png) Flutter version 2.5.1 Kotlin version 1.3.50 Dart version 2.14.2 Android Studio (version 2020.3)

This problem is from Kotlin [trailing comma](https://kotlinlang.org/docs/whatsnew14.html#trailing-comma) Change Kotlin version after 1.4 (ex. 1.4.30),

@BapediBoupi Of course, I already registered at jitpack and use. com.github.bungabear:SegmentedButton:v2.0.3

I have the same issue, when I use dialog. So I should make empty WebViewX container before open dialog.

same issue for me (UltraNav & Elan TouchPad Laptop)

You can use your font. ```java Typeface fontFace = ResourcesCompat.getFont(this, R.font.nanumpen); yourTicker.setTypeface(fontFace); ```

Wrap TagEditor with RawKeyboardListener. Then, you can get backspace key event while TextField is empty. ```dart RawKeyboardListener( focusNode: FocusNode(), onKey: (event){ if(event.runtimeType.toString() == 'RawKeyDownEvent'){ if (event.logicalKey == LogicalKeyboardKey.backspace) { if(pop...

> I had a similar issue. Adding the following to my config.toml fixed it for me: > > [tg] > force_ipv6 = false Thank you. But `force_ipv6 = false` and...