Top 20 Daily used Kotlin Code Snippet
In past month i did some work on Kotlin and some article you can see on this trending topic. So today i am here with the list of daily used…
In past month i did some work on Kotlin and some article you can see on this trending topic. So today i am here with the list of daily used…
Nowadays most of users visit Facebook no matter they access by phone, mobile or tablet and this is a part of our habit and definitely you'll amaze with Facebook new…
Have you ever been tired of parsing SQLite query results using Android cursors? You have to write lots of boilerplate code just to parse query result rows, and enclose it…
Kotlin offers the Anko library as a DSL(Domain Specific Language) to design an Android screen. Why Anko Layouts? Why DSL? By default, UI in Android is written using XML. That…
Kotlin Anko Coroutines is utilities based on the kotlinx.coroutines library. Using Anko Coroutines in your project Add the anko-coroutines dependency to your build.gradle: dependencies { compile "org.jetbrains.anko:anko-coroutines:$anko_version" } Listener helpers asReference()…
Kotlin Anko is a library which makes Android application development faster and easier. It makes your code clean and easy to read, and lets you forget about rough edges of the…
Anko Commons is a "toolbox" for Kotlin Android developer. The library contains a lot of helpers for Android SDK, including, but not limited to: Using Anko Dialogs in your project…