Metadata-Version: 2.4
Name: ubo-gui
Version: 0.13.12
Summary: GUI sdk for Ubo Pod
Project-URL: homepage, https://github.com/ubopod/ubo-gui/
Project-URL: repository, https://github.com/ubopod/ubo-gui/
Project-URL: documentation, https://github.com/ubopod/ubo-gui/
Project-URL: changelog, https://github.com/ubopod/ubo-gu//blob/main/CHANGELOG.md
Author-email: Sassan Haradji <me@sassanh.com>
Maintainer-email: Sassan Haradji <me@sassanh.com>
License: Apache-2.0
License-File: LICENSE
Keywords: components,kivy,ubo,widgets
Requires-Python: >=3.11
Requires-Dist: headless-kivy>=0.12.1
Requires-Dist: python-immutable>=1.0.2
Requires-Dist: qrcode>=7.4.2
Description-Content-Type: text/markdown

# Ubo GUI

GUI sdk for [Ubo Pod](https://github.com/ubopod)

## 📋 Requirements

- [Ubo Pod](https://github.com/ubopod)
- [headless-kivy-pi](https://github.com/ubopod/headless-kivy-pi)

## 📦 Installation

You can install it using this handle: headless-kivy-pi@git+<https://github.com/ubopod/ubo-gui.git>

```sh
# pip:
pip install headless-kivy-pi@git+https://github.com/ubopod/ubo-gui.git
```

## 🛠 Usage

Checkout [Ubo App](https://github.com/ubopod/ubo-app) to see a sample implementation.

## 🤝 Contributing

You need to have [uv](https://github.com/astral-sh/uv) installed on your machine.

To install the required dependencies, run the following command in the root directory of the project:

```sh
uv sync
```

You can run linter over whole codebase by running this command:

```sh
uv run poe lint
```

### Subscriptions

The subscriptions are divided into three groups:

- Screen subscriptions are those assigned to a particular stack item, but their handlers doesn't change anything in the `StackItem` itself.
  The handler just changes something on the rendered screen and if that stack item is not visible, the handler doesn't need to be called.
  Therefore these subscriptions are cleared when the current screen is changed.
  Samples:
  - `items` of the currently visible menu
  - `title` of the currently visible screen
- Menu subscriptions are those assigned to a particular menu. Like screen subscriptions, they are cleared when the current screen is changed. They also get cleared when the menu is scrolled.
  Samples:
  - `heading` of a headed menu
  - `sub_heading` of a headed menu
  - `placeholder` of a menu
- Stack item subscriptions are those assigned to a particular stack item. They are cleared when the stack item is popped. They stay alive as long as the stack item is in the stack, even if it is in the background.
  In other words, unlike the other two, they are not cleared when, for example, a sub-menu or an application is opened on top of the current stack item.
  Samples:
  - `menu` of an item

### ⚠️ Important Note

Make sure to run `uv run poe download_font` to download Material Symbols font.

## 🔒 License

This project is released under the Apache-2.0 License. See the [LICENSE](./LICENSE)
file for more details.
