Dmytro Rostopira
Dmytro Rostopira
I've also encountered this problem. Just downloaded source and copied to my app sources
Looks like this repo isn't maintained anymore So I've wrote kotlin extension for this ``` val RippleBackground.paint: Paint? get() = try { val field = RippleBackground::class.java.getDeclaredField("paint") field.isAccessible = true field.get(this)...
I'm experiencing this issue on Galaxy S8+ with Android 8.0 and on OnePlus 5t 8.0/8.1
@LordArma I've solved it by changing visibility ``` rippleBackground.startRippleAnimation(); rippleBackground.setVisibility(View.GONE); ```
This is unrelated to library Gson ignores field that are marked with `transient` java keyword. In Kotlin you can annotate generated property like this: ``` @get:Transient val preferences: SharedPreferences =...
library is dead? same issue here
@stale It should be open (=
Seems you have deleted old code and replaced it with fix for Android 11. Could you please add an `if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P)` statement to leave old code for Android...
What except `dart:io` could cause this? I've searched, io package doesn't seem to be referenced in my code
I've removed every import from and web endpoint, except flutter/material and still getting an error I've a lot of libraries in pubspec.yaml, but they are used in different endpoint Dev...