2 unstable releases
0.2.0 | Aug 8, 2024 |
---|---|
0.1.0 | Jul 8, 2024 |
#440 in GUI
140KB
3K
SLoC
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.
Examples
There is the Gallery that contains an overview of all magic
components vivi
provides.
Prerequisites
Slint
>= 1.7
How to use with Rust
- Add
vivi_ui
as build dependency to yourCargo.toml
:
[dependencies]
slint = { version = "1.7" }
[build-dependencies]
slint-build = { version = "1.7" }
vivi_ui = { version = "0.2" }
- Use
vivi::import_paths()
in yourbuild.rs
file. It will make coop's files visible as@vivi
.
fn main() {
slint_build::compile(
"ui/index.slint",
slint_build::CompilerConfiguration::new()
.with_library_paths(vivi_ui::import_paths()),
).unwrap();
}
- Add an import to your Slint file (
ui/index.slint
):
import { MagicWindow, FilledButton } from "@vivi/magic.slint";
export component MyApp inherits MagicWindow {
preferred-width: 600px;
preferred-height: 400px;
title: "MyApp";
FilledButton {
text: "Click me";
}
}
Get Started
To quickly get started, you can use the following rust template repository:
Contribution
Ideas, feedback and code contributions are welcome. Please check the Contribution Guide for more details.
License
The source code of vivi
and examples are available under MIT license.