You comments, the behavior of the code and your request below are not in alignment. The upper scroll view is a vertical scroll view, and is working correctly.
Did you want to add a horizontal ScrollView below the vertical ScrollView?
ScrollView: # horizontal *** This is a vertical ScrollView, and is working.
MDBoxLayout:
orientation: 'vertical'
size_hint: 1, None
size: self.minimum_size
spacing: 20
padding: 20
SizedMD5Card:
GridLayout:
size_hint: None, None
size: self.minimum_size
padding: 20
spacing: 30
cols: 2
row: 2
SizedMD1Card:
SizedMD2Card:
SizedMD6Card:
SizedMD4Card:
SizedMD5Card:
ScrollView: # vertical # I assume you want this to be Horizontal, Is that correct?
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/a463b4a0-0dd0-4534-854b-37cca0424b97n%40googlegroups.com.
I’ve presumed this is what you are looking for,,, Please read: https://kivy.org/doc/stable/api-kivy.uix.scrollview.html?highlight=scrollview#managing-the-content-size-and-position
You need to size the Layout under the scrollview. In your original code, you were attempting to scroll an unsized boxlayout.
"""
ScrollView: # Changed to Horizontal
size_hint_y: None
height: dp(175)
do_scroll_y: False
do_scroll_x: True
GridLayout:
cols: 3
row: 1
size_hint: None, None
size: self.minimum_size
spacing: 20
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/629cc558.1c69fb81.34cca.3e2eSMTPIN_ADDED_MISSING%40gmr-mx.google.com.