We might be the first banking app written in 100% ...
# compose
t
We might be the first banking app written in 100% Compose. Thanks to this channel for being an invaluable resource. https://play.google.com/store/apps/details?id=com.mercury.bank
💯 1
🎉 26
s
Nice! Super slick app, Tad. I was just using it this morning💪🏽
🙏 1
k
How do you clear text field's focus when clicked outside the text field?
t
Copy code
Surface(
    color = MercuryTheme.colors.background,
    // Clear focus when tapping on app background.
    modifier = Modifier.clickable(
        interactionSource = remember { MutableInteractionSource() },
        indication = null,
    ) { focusManager.clearFocus() }
) {
  // Rest of app
}
🙏 1
where
focusManager
is
LocalFocusManager.current