Skip to content
View jaikeerthick's full-sized avatar
🌱
Surviving...
🌱
Surviving...

Block or report jaikeerthick

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jaikeerthick/README.md

> println("Hello World! πŸ‘‹")



  • πŸ“² I Love to develop Android apps, with attractive UI and high performance.
  • πŸ›  Kotlin + Jetpack Compose.
  • πŸ”­ Exploring: Ktor, Kobweb.

Pinned Loading

  1. Composable-Graphs Composable-Graphs Public

    ✨ A very Minimal, Sleek and Powerful Graph library for Android built with Kotlin & Jetpack Compose

    Kotlin 228 12

  2. jetpack-compose-waves jetpack-compose-waves Public

    Add beautiful, fluid, animated waves to your Jetpack Compose app with just one composable πŸͺ„. No library install β€” just copy the files and start using animated waves in seconds πŸ”₯.

    Kotlin 5 1

  3. Convert any view to Bitmap Convert any view to Bitmap
    1
    class ShareScreenshot {
    2
      
    3
    fun getBitmapFromView(view: View): Bitmap? {
    4
            val bitmap = Bitmap.createBitmap(view.width, view.height, Bitmap.Config.ARGB_8888)
    5
            val canvas = Canvas(bitmap)
  4. SafeLet.kt SafeLet.kt
    1
    private inline fun <T1: Any, T2: Any, R: Any> safeLet(p1: T1?, p2: T2?, block: (T1, T2)->R?): R? {
    2
        return if (p1 != null && p2 != null) block(p1, p2)Β elseΒ null
    3
    }