scope functions ⦁ Implicit parameter: `it` ⦁ Nullability ⦁ !! operator ⦁ Platform type: ! ⦁ Safe operator -> silently fail ⦁ Use !! if you are sure it’s not null 22 Source: Putting down the Golden Hammer - Huyen Dao
everything is function ⦁ Composable function ⦁ Composition over inheritance ⦁ Uppercase naming function (top-level) 23 Source: Compose Yourself: Designing A Kotlin First UI Toolkit @Composable fun Checkbox(...)
Yourself: Designing A Kotlin First UI Toolkit @Override public boolean performClick() { setChecked(!mChecked); final boolean handled = super.performClick(); ... }