Is it possible to create scrollable actionsheet?

Hello all ,
Could you please let me know how we can create a scrollable action sheet like tweeter ?

I am binding a list to action buttons but its only shows the list of action which fits on mobile screen.

Please let me know if anyone implemented a scrollable action sheet in ionic

You can overwrite class “action-sheet-group”

    .action-sheet-group{
          overflow: scroll;
          max-height: 400px;
    }

And more, you can use media query to set different max-height value for different device.

1 Like