An Android Library for applying easy, fast and effective 62 (will be added more) LUT filters to photos. With RenderScript, it is aimed to process the color spaces in the LUT and apply them to the picture in the form of a filter. What is LUT? The direct translation of LUT (“Lookup Table”) from English […]
Update the UI state of your Android and iOS apps at runtime. Motivation Updating the UI State at runtime is a very useful tool for rapid prototyping and validation purposes. It also adds the benefit that it can be used by the whole testing team, be it developers, designers, quality assurance, etc. demo.mov How does […]
Android library written in Jetpack Compose, containing a fully configurable survey/questionnaire screen. Gradle Step 1 : Add the JitPack repository to your build file dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { mavenCentral() maven { url ‘https://jitpack.io’ } } } Step 2 : Add the dependency implementation ‘com.github.zekierciyas:survey-compose:1.0.0’ Usage @Composable fun SurveyView() { var showMessage by remember { […]
published on 2024-03-05T14:35:53Z 🚀 Dive into the Compose multiverse with the latest episode of Talking Kotlin! 🌐 In this insightful conversation, our hosts, Seb and Hadi, bring on a special guest, Adriel Café, to discuss two powerful libraries in the Kotlin ecosystem – Lyricist and Voyager. 🎼 Lyricist: The Missing Piece of Jetpack Compose Adriel […]
🚀 Immerse yourself in the world of Kotlin as the latest podcast episode unveils the inner workings of the Kotlin Foundation! 🎙️ Join Sebastian and Hadi and a stellar lineup of guests, including Ksenia Shneyveys, Trisha Gee, Kevin Galligan, Charles Anderson, and Jeffrey van Gogh, as they share exclusive insights into the foundation’s mission, projects, […]
Você pode ler em português (https://github.com/welbert6/MaterialStoryView/edit/master/ReadmePT.md) Screenshots Introduction MaterialStoryView is an Android library for implementing a story carousel, similar to those found on social networks like Instagram and Facebook. This library makes it easy to add a story viewing component to your Android application, allowing for quick and simple integration. ✅ Saves story as seen […]
This article documents how I created my own custom screen saver for macOS, built almost entirely in Kotlin, using the powers of Kotlin Multiplatform to target macOS. The inspiration for this project was the KotlinConf 2023 idle video, which had Kotlin’s logos through the ages bouncing around the screen, in the style of classic DVD […]
This is a library that allows pure Java / Kotlin modules or libraries using SLF4J as their logging framework to bridge on the Google Android platform in combination with Jake Wharton’s Timber logging utility. It’s based on the patrickfav/slf4j-timber project with a modern take using Kotlin and the latest version of SLF4J (currently v2.0.6). Usage […]
In an Android app we can define URI patterns that map URI’s to activities using intent-filters. To find out more about this you should read this documentation provided by Google https://developer.android.com/training/app-links Once we have defined which URI’s are handled by our application in our manifest we can then inspect the URI of incoming link Intent’s […]
⚡ Range bar chart library for Android using MPAndroidChart⚡ There were no charts in MPAndroidChart to show ranges. We were forced to show the range charts we wanted using a similarly capable candlestick chart. This library can be used when you want to create charts that can represent ranges such as weather and heart rate. […]