How to do Region Blocks for Code Folding in android studio with Flutter
问题 I can do region blocks in android studio like this. //region Description Your code here //endregion But how to the same with flutter ? 回答1: In the IntelliJ or Android Studio IDE, you can use REGION folding as written in your question, works fine. REGION folding also works with //#region (both tested in the IntelliJ IDE CE 2019.3.3 and Android Studio IDE 3.4.1): // with and without spaces after double slashes //#region Description Your code here //#endregion // #region Description Your code