William Andres
William Andres

Reputation: 29

Sort variables by letter in Android Studio

I have a class where I declare many variables concurrently.

Is there any combination of keys or extension to sort them by letters?

I use the IDE AndroidStudio 2022 and the code is in Dart.

enter image description here

Upvotes: 0

Views: 707

Answers (1)

passsy
passsy

Reputation: 5222

Yes, you can sort the members automatically, but the actions aren't assigned to a shortcut by default.

IntelliJ

Windows: Ctrl + A

MacOs: + A

Type Sort Members in Dart File

Sort members in IntelliJ

VScode

Windows: Ctrl + P

MacOs: + P

Type > Dart: Sort Members

Sort members in VScode

Upvotes: 1

Related Questions