From https://developer.android.com/kotlin/style-guide
When a function signature does not fit on a single line, break each
parameter declaration onto its own line.Parameters defined in this
format should use a single indent (+4). The closing parenthesis ())
and return type are placed on their own line with no additional
indent.
fun <T> Iterable<T>.joinToString(
separator: CharSequence = ", ",
prefix: CharSequence = "",
postfix: CharSequence = ""
): String {
// …
}
Signed-off-by: Chris Narkiewicz <hello@ezaquarii.com>
Fixing migration to androidx
Dark theme styling
File details fragment tab text colour
File list overflow menu background colour
Signed-off-by: Daniel Bailey <daniel.bailey@grappleIT.co.uk>
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>