2

i have been watching some jetpack compose tutorials and trying to create projects with it. Its quite cool and looks very interesting. but wrti8 those modifiers seems like a great wastage of time :/
Also, i have an OCD of writing code in lesser number of lines , as much as possible . so i would rather prefer writing

val x = Modifier.function1().fun2().fun()

than

val x = Modifier
.function1()
.fun2()
.fun()

as long as my code line does not cross the 80 character limit guideline, and as long as it makes sense to not switch to a new line.

but IDE seems adamant on breaking those long modifier lines to weird indented codeblock, so its already getting very noring for me :/

Comments
Add Comment