All Projects → kivymd-extensions → akivymd

kivymd-extensions / akivymd

Licence: MIT license
A Set of cool UI widgets for KivyMD

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to akivymd

KV4Jetbrains
Syntax highlighting and auto-completion for Kivy/KivyMD .kv files in PyCharm/Intellij IDEA
Stars: ✭ 93 (+40.91%)
Mutual labels:  kivymd
KivyMLApp
The repository host the API for the ML model via FastAPI, Flask and contains android app development files using KivyMD.
Stars: ✭ 54 (-18.18%)
Mutual labels:  kivymd
killer
Windows Task Manager with special features, written in Python.
Stars: ✭ 49 (-25.76%)
Mutual labels:  kivymd
AC Management
A desktop application made with Python/Kivy for managing account related data of college students'
Stars: ✭ 23 (-65.15%)
Mutual labels:  kivymd
copylot
Your copilot to studies and work (Pomodoro-timer, Translate and Notes app)
Stars: ✭ 17 (-74.24%)
Mutual labels:  kivymd
KivyMD Extensions
Additional packages for KivyMD library. See @kivymd-extensions
Stars: ✭ 20 (-69.7%)
Mutual labels:  kivymd
Decentra-Network
This is an open source decentralized application network. In this network, you can develop and publish decentralized applications.
Stars: ✭ 58 (-12.12%)
Mutual labels:  kivymd

Awesome KivyMD

Awesome KivyMD is a package containing customized and non-material widgets for KivyMD.

Installation

pip install kivymd_extensions.akivymd

#or

pip install https://github.com/kivymd-extensions/akivymd/archive/main.zip

Usage with Buildozer

requirements = https://github.com/kivymd-extensions/akivymd/archive/main.zip

Dependencies:

Documentation

Usage

from kivy.lang import Builder

from kivymd.app import MDApp
import kivymd_extensions.akivymd

KV = """
<NavigationButton@Button_Item>
    icon_color: app.theme_cls.text_color
    text_color: app.theme_cls.text_color
    button_bg_color: app.theme_cls.primary_color
    mode: 'color_on_active'
    badge_disabled: True


MDScreen:

    AKBottomNavigation2:
        bg_color: app.theme_cls.bg_darkest

        NavigationButton:
            text: 'Alert'
            icon: 'bell-outline'

        NavigationButton:
            text: 'Bank'
            icon: 'bank-outline'

        NavigationButton:
            text: 'Download'
            icon: 'arrow-down-bold-outline'
"""


class Test(MDApp):
    def build(self):
        return Builder.load_string(KV)


Test().run()

Examples

git clone https://github.com/kivymd-extensions/akivymd.git
cd akivymd
cd examples/full_example
python main.py

Build Docs

git clone https://github.com/kivymd-extensions/akivymd.git
cd docs
sphinx-build -b html sources ./_build

Support

If you need assistance or you have a question, you can ask for help on our mailing list:

License

MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].