Code alignment in Android Studio - declare a function with more parameters

PHOTO EMBED

Mon Aug 16 2021 07:48:48 GMT+0000 (Coordinated Universal Time)

Saved by @GoodRequest. #kotlin

fun View.actionsPage(
    actions: List<Action>,
    grid: Grid,
    itemsPerPage: Int,
    position: Int,
    settings: Settings
) = whenAttached { }


fun View.actionsPage(
    actions      : List<Action>,
    grid         : Grid,
    itemsPerPage : Int,
    position     : Int,
    settings     : Settings
) = whenAttached { }
content_copyCOPY