Paul Woitaschek
12/21/2023, 10:51 AMprivate fun Modifier.unicorns() : Modifier = background(Color.Red)
But is it really?sindrenm
12/21/2023, 10:55 AMbackground(Color.Red)
is just this.background(Color.Red)
, which does indeed reference the original modifier (this
).Paul Woitaschek
12/21/2023, 10:56 AMsindrenm
12/21/2023, 10:56 AMprivate fun Modifier.unicorns() : Modifier = Modifier.background(Color.Red)
Paul Woitaschek
12/21/2023, 10:56 AMsindrenm
12/21/2023, 10:57 AMPaul Woitaschek
12/21/2023, 10:58 AMsindrenm
12/21/2023, 10:59 AMHristijan
12/21/2023, 11:12 AMPaul Woitaschek
12/21/2023, 11:12 AMHristijan
12/21/2023, 11:21 AMeygraber
12/21/2023, 3:16 PMefemoney
12/22/2023, 10:14 AM