Hi folks! What's the simplest way to adjust Androi...
# android
i
Hi folks! What's the simplest way to adjust Android Studio's Kotlin auto formatting? For example, I don't like this default:
Copy code
override fun onCreateView(
    inflater: LayoutInflater,
    container: ViewGroup?,
    savedInstanceState: Bundle?
): View? {
I want this instead (that it takes the max space possible in column):
Copy code
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
                          savedInstanceState: Bundle?): View? {
google 3