How do i change the icon for the MDToolbar to my own custom icon image?
i tried to change the color the icon but it seems to not be possible, so now im looking to change it altogether. How do i do this?
How do i change the icon for the MDToolbar to my own custom icon image?
i tried to change the color the icon but it seems to not be possible, so now im looking to change it altogether. How do i do this?
MDtoolbar has been removed as of v1.0 of KivyMD. You should be using MDTopAppBar instead. With MDTopAppBar you can set icons to appear on the left or right as needed. ie.
MDTopAppBar:
left_action_items: [["dots-vertical",lambda x: app.presser()]]
right_action_items: [["account-child",lambda x: app.presser()],["hamburger",lambda x: app.presser()]]
See https://kivymd.readthedocs.io/en/latest/components/toolbar/