Skip to content

Instantly share code, notes, and snippets.

use vizia::prelude::*;
const STYLE: &str = r#"
.toggle_button {
background-color: transparent;
border-radius: 4px;
max-width: 8px;
min-width: 8px;
max-height: 8px;
min-height: 8px;
use vizia::prelude::*;
#[derive(Lens)]
pub struct AppData {
pub check1: bool,
pub check2: bool,
pub test: Vec<String>,
}
impl Model for AppData {}