Closed eribol closed 3 months ago
try the main branch
[dependencies.iced]
git = "https://github.com/iced-rs/iced.git"
branch = "master"
default-features = false
features = ["advanced","wgpu"]
[dependencies.iced_aw]
git = "https://github.com/iced-rs/iced_aw.git"
branch = "main"
default-features = false
features = ["tabs","icons"]
still gets a lot of implementation error; err.txt
That error means that something is not syncing up in your library cache. You probably need to run
Cargo Clean Cargo Update
As the example, in iced_aw, compiles and runs perfectly fine with no errors.
It works perfect when i clone iced-iced_aw and run cargo run -p tabs but when i create new project, copy the all tabs example in it i get tons of error. err.txt
yeah this is some sort of cache issue.
But it does not fix. I cleaned everything but still it does not work.
Okey, changed iced branch master with version = "0.13.0-dev" and worked.
I am using iced 0.13.0-dev version with iced_aw beta version but in examples, Tabs into() is works but with beta version it does not compile.