Please Join at Google Groups Kivy , this is rather active more.
Here is example: Kivymd version 1.0.2
from kivymd.uix.navigationdrawer import (
MDNavigationLayout,
MDNavigationDrawer,
MDNavigationDrawerMenu,
MDNavigationDrawerHeader,
MDNavigationDrawerLabel,
MDNavigationDrawerDivider,
MDNavigationDrawerItem)
....
<HelpScreen>:
MDNavigationLayout:
ScreenManager:
MDScreen:
md_bg_color: 1, 1, 1, 1
MDBoxLayout:
orientation:'vertical'
padding:0
pos_hint: {"top": 1}
MDTopAppBar:
id:help
title: "Help"
elevation: 10
opposite_colors: True
anchor_title:'center'
left_action_items: [["arrow-left",lambda x: root.back_menu()]]
ScrollView:
bar_color:(117/255,117/255,117/255)
bar_width:3
MDList:
MDLabel:
id:helplabel
text:'here is help'
color: 'black'
markup:True
size_hint_y:None
height:self.texture_size[1]
MDNavigationDrawer:
id:nav_drawer
radius: (16, 0, 0, 16)
anchor: "right"
close_on_click:True
md_bg_color: get_color_from_hex("E3E3E3")
enable_swiping:False
ContentNavigationDrawer:
orientation: "vertical"
padding: '2dp'
spacing: '2dp'
MDNavigationDrawerHeader:
id:nav_header2
title: "Help"
title_color: "#4a4939"
text: "Here for tutorial"
spacing: "4dp"
padding: "8dp", 0, 0, "16dp"
MDNavigationDrawerDivider
12 Temmuz 2022 Salı tarihinde saat 14:45:53 UTC+3 itibarıyla RRDDMMjr şunları yazdı: