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

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

  1. Composable-Graphs Composable-Graphs Public

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

    Kotlin 167 11

  2. 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)
  3. Love-Calculator Love-Calculator Public

    Love Calculator app built using Kotlin, MVVM, Love Calculator API. Enter your name and your partner's name. The app will calculate the love percentage 😍

    Kotlin 4

  4. Gender-Checker Gender-Checker Public

    Gender Checker app built using Kotlin, MVVM, Genderize.io API. Take this as a reference for MVVM and Genderize.io API πŸš€

    Kotlin 1

  5. 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
    }