KivyMD Как показывать контент из папки?

У меня есть папка "music" в корневой папке, куда загружается музыка, и по идее должна отображаться. Но я понятия не имею как её отображать.

''' BoxLayout: orientation:'vertical' font_style: "Sans" background: "Dark"

MDToolbar:
    
    title: 'My Archive'
    md_bg_color: .2, .2, .2, 1
    specific_text_color: 1, 1, 1, 1
    icon: 'music'
MDBottomNavigation:
    panel_color: .2, .2, .2, 1
    

    MDBottomNavigationItem:
        name: 'music screen'
        text: 'Music'
        icon: 'music'
        
        MDList:
            id: containers

    MDBottomNavigationItem:
        name: 'download screen'
        text: 'YT Download'
        icon: 'youtube'
        
        

        MDLabel:
            MDTextField:
                id: YT_URL
                hint_text: "Enter URL from YouTube"
                color_mode: 'accent'
                width: "500dp"
                pos: 0,100
            MDIconButton:
                id: button_check
                icon: "download_icon.png"
                user_font_size: "32sp"
                set_pos_bottom_buttons: "right"
                pos: 0,5
                on_press: app.yt_implement()
                active: False
                MDSpinner:
                    size_hint: None, None
                    size: dp(46), dp(46)
                    pos_hint: {'center_x': .5, 'center_y': .5}
                    active: True if button_check.active else False
            
                
    MDBottomNavigationItem:
        name: 'download screen VK'
        text: 'VK download'
        icon: "vk_icon.png"

        MDLabel:
            MDTextField:
                id: vk_login
                hint_text: "Enter login"
                color_mode: 'accent'
                width: "500dp"
                pos: 0,250
                
            MDTextField:
                id:vk_password
                hint_text: "Enter password"
                color_mode: 'accent'
                width: "500dp"
                pos: 0,150
                password: True
                
            MDIconButton:
                icon: "download_icon.png"
                user_font_size: "32sp"
                pos: 0,5  
                on_press: app.VK_implement()

Ответы (0 шт):