jetc.dev Newsletter Issue #180
Published: 2023-09-05
This week, we look at a stable Compose Multiplatform release and rendering our
composables in greyscale. We look at Compose interoperability with classic Views
,
both in development and in test. Plus, we roll with some scrollbars and find a complete
SpannedString
to AnnotatedString
converter.
Ooooo… What Did We Get?
Reviewing the release notes for the latest Jetpack Compose update!
Compose Compiler 1.5.3 is available, offering support for Kotlin 1.9.10.
One Off the Stack, One Off the Slack
You’ve got questions. That’s understandable!
Is .dp
Expensive?
We use .dp
quite a bit in Compose UI development. Is that a problem? Learn a bit
more about how .dp
is implemented, and its performance ramifications, in this
week’s highlighted Stack Overflow question.
How Can I Render a Composable to a Bitmap? (No, Really!)
Last week, I pointed out that
we have official instructions on rendering a composable to a bitmap.
Alas, those instructions have some issues. Learn more in this week’s highlighted
Kotlinlang #compose
Slack thread.
Composable Commentary
Posts, videos, and other new information related to Jetpack Compose!
Compose Multiplatform 1.5.0 Release
JetBrains’ Garth Gilmour announced the stable 1.5.0
release of Compose Multiplatform,
based on Compose 1.5 and version 1.1 of Material Design 3. We now have a stable
UI testing framework for Compose Desktop, along with more cross-platform composables
and improved iOS support (albeit still alpha).
Medium: Seeing your composable in shades of grey
Katie Barnett is back, walking us through creating a greyScale()
modifier to apply
a saturation matrix to an entire composable, making everything (including text and images)
appear grey. Or possibly gray. 😁
Medium: How to use Android View inside Jetpack Compose and vice versa?
Kaushal Vasava walks us through the basics of using AndroidView()
to wrap
classic View
-based widgets in composables
and using ComposeView
to host composables
in a classic View
-based layout.
Compose Interoperability in Espresso Tests
Joe Birch returns, looking at the testing challenges of using ComposeView
to put a composable
inside of a traditional View
-based layout. Espresso tests cannot “see” composables, and
using ComposeTestRule
might break other aspects of your tests. Joe shows us how we can
leverage UiAutomator to bridge the gap.
Medium: @Preview Driven Development with Jetpack Compose
Medium member sliskicode writes about a riff on test-driven development (TDD), where
the initial focus is on @Preview
composables and getting your early UI correct via manual
testing with those, with an eye towards speeding up UI construction.
Medium: KodeeLogin — Using Composables in SwiftUI
Christian Gaisl takes a peek at Compose Multiplatform and its bi-directional interoperability: hosting composables in native UI frameworks and hosting native UI elements in composables. Christian specifically examines the iOS support in Compose Multiplatform, seeing how we can create a login composable and render it as part of a SwiftUI interface.
Medium: UI Testing in Jetpack Compose
Maria Luíza gives us a tour of setting up our first instrumented tests for composables,
using ComposeTestRule
and its set of matchers and verifiers.
Medium: Compose a Compose Button by composing Composable functions
OK, so you need to create a composable from scratch, because your UI does not really fit any existing composable. Now what? André Oriani proposes that you should take a pipeline approach, with layered composables each handling a single responsibility (drawing, animation, state, and theming).
Navigation Rail with Material 3 in Jetpack Compose
Ravikant Sahu examines the NavigationRail()
composable from Compose Material3, for
a vertical toolbar-style column of icon buttons. This UI element can be a useful alternative
to a bottom navigation bar for larger screen sizes.
Other Interesting Links
- All About Theming in Jetpack Compose
- Build a Real-Time Meeting App for Android ith Jetpack Compose
- Material 3 Adaptive: Making Responsive Layouts with Jetpack Compose easily
- Medium: Bottom AppBar with Jetpack Compose
- Medium: Bottom Navigation Bar in Jetpack Compose
- Medium: Building the WhatToEat Experience on Android
- Medium: Deep dive into Jetpack compose ViewModel injection
- Medium: Imperative vs. Declarative UI Development with Jetpack Compose
- Medium: Integrating Jetpack Compose UI in an Existing Epoxy Codebase
- Medium: Lifecycles in Jetpack Compose
- Medium: Navigating The Obstacles of Navigation Compose
- Medium: Simple Jetpack Compose Tabs With Fragments
- Medium: State and State Hoisting In Compose
- Medium: What is ComposeView and How to Use in Kotlin and Java codes ?
Resource Roundup
100% pure code!
GitHub: GIGAMOLE / ComposeScrollbars
Basil Miller published a library with a highly flexible scrollbar implementation, with custom animations and support for all the major scrollable containers, including lazy ones. Basil also published libraries for custom drop shadows, “levitation” effects, and fading edges.
GitHub: Aghajari / AnnotatedText
GitHub user Aghajari brings us a complete mapping of SpannedString
with standard spans
to AnnotatedString
for use in Compose UI. This includes an asAnnotatedString()
extension function for SpannedString
and a new AnnotatedText()
function that takes HTML
as input.
GitHub: jianastrero / compose-nav-transitions
Jian James Astrero has created a wrapper library for Navigation for Compose, offering shared element transitions.
GitHub: stevdza-san / KotlinBootstrap
Stefan Jovanovic offers us a library based on Kobweb to support Bootstrap-based UIs using Compose HTML.
Other Interesting Links
- GitHub: iideprived / JetpackComposeComponents (various types of buttons)
- GitHub: JetBrains / jewel (Compose Desktop themes: Darcula and New UI)
- GitHub: MadFlasheroo7 / Madifiers (bionic text and animated text units)
- GitHub: sunny-chung / composable-table (2D scrolling table)
- GitHub: yveskalume / compose-qrpainter (QR code
Painter()
)
Or, you can subscribe to the Atom feed or follow Mark Murphy in the Fediverse.
Recent Issues:
- 2024-11-12: @cbruegg@mastodon.green on Compose 1.7 and compatibility! @eevis@mas.to on rendering text in a Canvas! @sinasamaki@androiddev.social and a centered slider! @touchlab@mastodon.social with a Compose-Swift bridge! And... is NavigationSuiteScaffold() FAB?!?
- 2024-11-05: Compose patch release! Compose alpha! 2025 Compose Multiplatform plans! Glance! Side panels! @theapache64@androiddev.social on performance! Tables! And... reacting to a broadcast from a composable?!?
- 2024-10-29: Relay! Paparazzi! droidcon Lisbon 2024! Server-defined UI! And... desktop OS trays?!?