724b40e5a8
- Adds a Todo list example. - Updates ListView to support ending the row actions visible state. - Support setting Label text color.
22 lines
429 B
Rust
22 lines
429 B
Rust
//! This example implements a "kitchen sink" Todo app, because I suppose that's what all GUI
|
|
//! frameworks aspire to do these days. Go figure.
|
|
//!
|
|
//! This may get extracted into a different repo some day in the future.
|
|
|
|
use cacao::macos::App;
|
|
|
|
mod add;
|
|
mod app;
|
|
mod menu;
|
|
mod preferences;
|
|
mod storage;
|
|
mod todos;
|
|
mod windows;
|
|
|
|
fn main() {
|
|
App::new(
|
|
"com.cacao.todo",
|
|
app::TodosApp::default()
|
|
).run();
|
|
}
|