Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 445 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 445 Bytes

Module QRCode

A QRCode Widget.

Requirements:

pip install qrcode

Usage::

Python::

from kivy.garden.qrcode import QRCodeWidget
parent.add_widget(QRCodeWidget(data="Kivy Rocks"))

kv::

BoxLayout:
    orientation: 'vertical'
    Button:
        text: 'press to change qrcode'
        on_release: qr.data = "Kivy Rocks!"
    QRCodeWidget:
        id: qr
        data: 'Hello World'