You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, we started using compose-lints (great lib by the way) and we get a ComposeUnstableReceiver Warning on override fun Content() on any AbstractComposeView implementation, like the basic implementation below
Maybe I am wrong, but any implementation of AbstractComposeView is unstable by definition, so the right action is to simply suppress this warning... am i correct?
class MyAbstractComposeView @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyle: Int = 0,
) : AbstractComposeView(context, attrs, defStyle) {
@Composable
override fun Content() {
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, we started using compose-lints (great lib by the way) and we get a
ComposeUnstableReceiver
Warning onoverride fun Content()
on anyAbstractComposeView
implementation, like the basic implementation belowMaybe I am wrong, but any implementation of
AbstractComposeView
is unstable by definition, so the right action is to simply suppress this warning... am i correct?Beta Was this translation helpful? Give feedback.
All reactions