Stefan Jovanovic

Results 24 comments of Stefan Jovanovic

I used that code in my fragment. ``` @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_battery, container, false); WaveLoadingView waveView = view.findViewById(R.id.waveLoadingView); waveView.setBottomTitleColor(R.color.colorPrimaryDark); waveView.setWaveColor(R.color.greenDark);...

Whenever I try to change the color to something else I get purple color...

I have even added: 'com.android.support:design:27.0.2' But when application finally launches, I get transparent activity and nothing shows up.

> @stevdza-san did you fix it? I got the same issue > Nope, haven't tried since then.

I'm also getting this same issue in my Compose Multiplatform project, but can't figure out how to fix it. It only happens while I'm updating a `RealmList` field, with all...

@rorbech Hey, thanks for the response. I've managed to fix it somehow. Here's my new function implementation, just in case someone might find it helpful: ```kotlin override suspend fun addQuizToHistory(...

> By default, @kodeplateform , if you set the `onBackPressed` to null, you can use `BackHandler`. Of course, the BackHandler API is Android only, you will need to add Actual/Expect...

There are already two params: errorIcon/successIcon. But I guess you would want a painterResource type instead?

Thanks for the suggestion. Yes I'm definitely planning to do that at some point. Will leave this open for the time being.

I've found a new library called: KMPAuth (https://github.com/mirzemehdi/KMPAuth) which you can use for Kotlin/Compose Multiplatform project. And since the library already exists, I'm not gonna bother creating another one which...