skip to Main Content

I’m working with Flutter and Android Studio. I am trying to block *ahem* Group some line of codes so that I can just hide it by clicking the plus icon on the left hand side.

How to group a line of codes as a single block in Android Studio and/or Flutter?

2

Answers


  1. If I am not getting you wrong , you are talking about The Code Folding shortcuts in Android Studio.
    They allow us to fold Code Blocks & Region Blocks so we can have more fine grained control over what code we are looking at in any given moment.
    Have you checked these from official page:

    Collapse/expand current code block  Control+minus or Control+plus   Command+minus or Command+plus
    
    Collapse/expand all code blocks Control+Shift+minus or Control+Shift+plus   Command+Shift+minus or Command+Shift+plus
    

    For creating a region you can do this simply :

    //start region  method
        //your work here
    //endregion
    

    to open this

    control+shift+ (plus +)
    

    to close the region:

    control+shift+ (minus -)
    

    https://developer.android.com/studio/intro/keyboard-shortcuts

    or
    Check this : https://proandroiddev.com/code-folding-in-android-studio-5d046517dadc

    Login or Signup to reply.
  2. You can write the block as a new method, then call it whenever you want, and you can set any conditions during calling or you can use Visibility widget to work with visibility of your block

     .....
    if(!hidden)
     myBlock();
    .....
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search