ionic-super-tabs icon indicating copy to clipboard operation
ionic-super-tabs copied to clipboard

Vertical Scroll issue

Open harish0688 opened this issue 5 years ago • 5 comments

Vertical scroll not working. auto adjust height to page content not working.. not able to scroll down. and input type text hiding below super tab tool bar buttons...

harish0688 avatar Apr 09 '19 09:04 harish0688

What version of super tabs are you using?

ihadeed avatar Apr 10 '19 01:04 ihadeed

I have the same problem with version 5.2.0 and affect the app randomly.

toriphes avatar Apr 18 '19 08:04 toriphes

I have the same problem. I am using ionic version 4 and super tab version 6.0.0 beta 10

utbhavesh avatar Jul 30 '19 07:07 utbhavesh

you can try this it works for fine me <super-tab class="scroll" scrollY="true">

albatrosproject avatar Sep 15 '19 00:09 albatrosproject

After trying all of the different options - we still had the ion-content being 0px tall.

Adding style="min-height: -webkit-fill-available;" to ion-content fixed our issue.

<super-tab #overview>
	<ion-content style="min-height: -webkit-fill-available;">
		<app-overview></app-overview>
	</ion-content>
</super-tab>

brandoncorbin avatar Feb 12 '20 13:02 brandoncorbin