Every time I want to create tabs (especially for mobile) I need to use repeatinggroups to make horizontal scrolling available when content overflows.
Is there a way to use a normal row type group to scroll ?
Every time I want to create tabs (especially for mobile) I need to use repeatinggroups to make horizontal scrolling available when content overflows.
Is there a way to use a normal row type group to scroll ?
Use some custom css like:
#hscroll{
overflow-x: scroll !important;
flexwrap: nowrap!important;
}
also use this one on your child elements:
#hchild{
flex-shrink: 0 !important;
}
an make your group left aligned
This topic was automatically closed after 70 days. New replies are no longer allowed.