vivi_ui

Crates.iovivi_ui
lib.rsvivi_ui
version0.1.0
sourcesrc
created_at2024-07-08 05:39:29.985827
updated_at2024-07-08 05:39:29.985827
descriptionCustom component library for Slint
homepage
repositoryhttps://app.radicle.xyz/nodes/seed.radicle.garden/rad:z3oxAZSLcyXgpa7fcvgtueF49jHpH
max_upload_size
id1295386
size207,834
(vivi-rad)

documentation

README

vivi

vivi is a component library for Slint.

vivi provides currently the following two sets of components:

  • foundation: Base components that can be used to create a custom component set.
  • magic: Ready to use component set with a custom design based on Catppuccin.
#MadeWithSlint

Crates.io Rust docs 0.1.0 Slint docs 0.1.0 MIT licensed

Examples

There is the Gallery that contains an overview of all magic components vivi provides.

How to use with Rust

  1. Add vivi_ui as build dependency to your Cargo.toml:
[dependencies]
slint = { version = "1.6" }

[build-dependencies]
slint-build = { version = "1.6" }
vivi_ui = { version = "0.1" }
  1. Use vivi::import_paths() in your build.rs file. It will make coop's files visible as @vivi.
fn main() {
    slint_build::compile(
        "ui/my_app.slint",
        slint_build::CompilerConfiguration::new()
            .with_library_paths(vivi_ui::import_paths()),
    ).unwrap();
}
  1. Add an import to your Slint file:
import { MagicWindow, FilledButton } from "@vivi/magic.slint";

export component MyApp inherits MagicWindow {
    preferred-width: 600px;
    preferred-height: 400px;
    title: "MyApp";

    FilledButton {
        text: "Click me";
    }
}

License

The source code of vivi and examples are available under MIT license.

Commit count: 0

cargo fmt