Skip to content Skip to sidebar Skip to footer

Error : Unable To Import Package 'kivymd.navigationdrawer.navigationlayout'

Hi I have a problem with this simple code i can't import the wanted package i've tried to copy head codes of some kivy projects but it doesn't work #:import NavigationLayout kivymd

Solution 1:

# :import NavigationLayout kivymd.navigationdrawer.NavigationLayout# :import MDSeparator kivymd.card

include these in the kivy file instead

and incldue these in the main file:

from kivymd.navigationdrawerimportMDNavigationDrawer, NavigationLayoutfrom kivymd.cardimportMDSeparator

Solution 2:

All widgets that usually used in kv-lang are automatically added to Factory. You don't need to #:import them. Remove all your imports.

Solution 3:

Which version of the KivyMD package are you using.

NavigationLayout only exist in DEV package.

RELEASE PACKAGE:

RELEASE 0.104.1

MASTER BRANCH Master Branch

Solution 4:

try this:

#:import NavigationLayout kivymd.uix.navigationdrawer.NavigationLayout

Post a Comment for "Error : Unable To Import Package 'kivymd.navigationdrawer.navigationlayout'"