Status Update
Comments
so...@google.com <so...@google.com> #2
Dany, I believe this is fixed in a new release of safeargs ?
ap...@google.com <ap...@google.com> #3
Safeargs still needs AndroidComponentsExtension
to get the applicationID from the variants (7.2.0-alpha05
remove the extension?
ae...@google.com <ae...@google.com> #4
it moved to a different package : com.android.build.api.variant
so...@google.com <so...@google.com> #5
Safeargs still relies on AGP 4.2
. We need some of the BaseVariant
APIs to have replacements before we can upgrade to 7.0+
(
ae...@google.com <ae...@google.com> #6
The BaseVariant API are deprecated but still available in 7.x, so you should be able to release a newer version that uses the new package and still relies on the old API you require. Or am I missing something ?
so...@google.com <so...@google.com> #7
I'll try updating to the latest stable to see if we run into any issues. I can check to make sure changing the package name in 7.2.0-alpha05 works, but we would need it to be stable before we could do a release with this change.
Description
FilledTextField(
value = textState.value,
onValueChange = { textState.value = it },
onFocusChange = { focusState.value = it },
label = { },
placeholder = { Text("Message #composers") },
activeColor = Color.Transparent,
inactiveColor = Color.Transparent,
backgroundColor = MaterialTheme.colors.surface
)
But it shows a black bottom indicator. I don't think there's a way to remove it as it's hardcoded in `this[IndicatorWidthProp] = 1.dp`
Is this WAI? Should I use TextField in this case? The reason for me to use FTF is the placeholder.