Scrollview

ScrollViews help show lots of information within a set screen size

class kivycupertino.uix.scrollview.CupertinoScrollView(*args: Any, **kwargs: Any)

iOS style ScrollView

../_images/demo13.gif
bar_color = [0.65, 0.65, 0.65, 1]

Color of the bar of CupertinoScrollView when scrolling

../_images/bar_color.gif

Python

CupertinoScrollview(bar_color=(1, 0, 0, 1))

KV

CupertinoScrollview:
    bar_color: 1, 0, 0, 1
bar_inactive_color = [0, 0, 0, 0]

Color of the bar of CupertinoScrollView when not scrolling

../_images/bar_inactive_color.gif

Python

CupertinoScrollview(bar_inactive_color=(0.5, 0, 0, 1))

KV

CupertinoScrollview:
    bar_inactive_color: 0.5, 0, 0, 1