We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Platform: 64-bit Windows 10 Home Code:
use druid::{AppLauncher, WindowDesc, Widget, PlatformError}; use druid::widget::Label; fn build_ui() -> impl Widget<()> { Label::new("Hello, world!") } fn main() -> Result<(), PlatformError> { AppLauncher::with_window(WindowDesc::new(build_ui)).launch(())?; Ok(()) }
The text was updated successfully, but these errors were encountered:
#![windows_subsystem = "windows"]
rust-lang/rust#40870 has more info.
Sorry, something went wrong.
Perfect, it worked. Thanks!
No branches or pull requests
Platform: 64-bit Windows 10 Home
Code:
The text was updated successfully, but these errors were encountered: