You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if let Err(e) = eframe::run_native("todos", native_options, Box::new(|_| Ok(Box::new(app)))) {
lib.rs, lines 33 onwards:
#[cfg(not(any(feature = "egui26", feature = "egui27", feature = "egui28")))]
compile_error!("at least one egui version must be enabled");
#[cfg(feature = "egui26")]
use egui26 as egui;
#[cfg(feature = "egui27")]
use egui27 as egui;
#[cfg(feature = "egui28")]
use egui28 as egui;
The text was updated successfully, but these errors were encountered:
The following compiles and runs fine.
cargo.toml:
Line 11 of todo.rs:
lib.rs, lines 33 onwards:
The text was updated successfully, but these errors were encountered: