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
Border Radius applied to a stack Border radius applied to clip
The text was updated successfully, but these errors were encountered:
audulus/vger-rs#17 should fix this.
Sorry, something went wrong.
Looks like this was never completely integrated with lapce/vger or something has broken since then. Clip no longer clips at all with border_radius
minimal example
use floem::{ view::View, views::{clip, empty, Decorators}, }; fn app_view() -> impl View { clip(empty().style(|s| { s.background(floem::peniko::Color::rgba8(255, 0, 0, 150)) .margin(10) .height(30) .width(20) })) .style(|s| s.border_radius(4)) } fn main() { floem::launch(app_view); }
No branches or pull requests
Border Radius applied to a stack
Border radius applied to clip
The text was updated successfully, but these errors were encountered: