summaryrefslogtreecommitdiffstats
path: root/examples/pokedex (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-211-1/+1
|
* Implement AI `gallery` example :tada:Libravatar Héctor Ramón Jiménez2025-01-271-2/+1
| | | | It displays the most popular daily images of Civitai!
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-121-9/+10
|
* Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-121-5/+5
|
* Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez2024-07-092-8/+8
| | | | | If you need to run a `Task` during boot, use `run_with` instead!
* Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-191-1/+1
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-141-7/+7
|
* Merge branch 'master' into feat/text-macroLibravatar Héctor Ramón Jiménez2024-05-231-8/+3
|\
| * Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-031-7/+2
| | | | | | | | | | | | | | | | ... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
| * Make `image::Id` actually opaqueLibravatar Héctor Ramón Jiménez2024-05-011-1/+1
| |
* | fix: run `cargo fmt`Libravatar Richard Custodio2024-03-181-3/+1
| |
* | refactor: replace `text(format!(` with `text` macroLibravatar Richard Custodio2024-03-181-1/+1
|/
* Move `Program` to `application` moduleLibravatar Héctor Ramón Jiménez2024-03-171-1/+1
|
* Reuse `Pokedex` search `Command` in `update` logicLibravatar Héctor Ramón Jiménez2024-03-161-3/+3
|
* Implement `Program::load` to specify startup `Command`Libravatar Héctor Ramón Jiménez2024-03-161-9/+9
|
* Introduce `Program` APILibravatar Héctor Ramón Jiménez2024-03-161-9/+6
|
* Simplify theming for `Text` widgetLibravatar Héctor Ramón Jiménez2024-03-041-4/+2
|
* Host GIFs and video examples in `iced.rs`Libravatar Héctor Ramón Jiménez2023-09-071-3/+1
| | | | RIP Gfycat
* Update example dependenciesLibravatar Héctor Ramón Jiménez2023-09-072-3/+6
|
* Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-1/+3
| | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
* Fix new `clippy` lint in `pokedex` exampleLibravatar Héctor Ramón Jiménez2023-07-131-1/+1
|
* image: Allow any kind of data that implements `AsRef<[u8]>` for the image dataLibravatar Sebastian Dröge2023-02-171-1/+1
| | | | | | It's not required anywhere for it to be a plain slice or a `Vec` and this makes it possible to use data allocated in a different way without copying.
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-5/+3
|
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-271-1/+1
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-69/+46
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-2/+1
| | | | ... and check those in CI as well!
* Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-291-2/+2
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-28/+8
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Update `reqwest` in examplesLibravatar Héctor Ramón Jiménez2022-01-131-1/+2
| | | | ... and rely on `rustls` instead of `native-tls`
* Remove support for old `tokio` crateLibravatar Héctor Ramón Jiménez2022-01-121-2/+2
|
* Remove unused fields in `pokedex` exampleLibravatar Héctor Ramón Jiménez2021-12-071-4/+1
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-6/+6
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-6/+6
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-7/+3
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)
* Run cargo fmtLibravatar Dispersia2021-04-121-1/+4
|
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-111-3/+7
|
* Use `image::Viewer` in `pokedex` exampleLibravatar Héctor Ramón Jiménez2020-12-181-3/+8
|
* Merge pull request #595 from valbendan/masterLibravatar Héctor Ramón2020-11-251-1/+1
|\ | | | | upgrade tokio to latest version(v0.3)
| * Introduce `tokio_old` featureLibravatar Héctor Ramón Jiménez2020-11-251-1/+1
| | | | | | | | | | This feature allows users to rely on the `0.2` version of `tokio` while the async ecosystem upgrades to the latest version.
* | Use `f32` for `border_width` and `border_radius`Libravatar Héctor Ramón Jiménez2020-11-231-1/+1
|/
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-1/+1
|
* Merge pull request #246 from hecrj/feature/application-flagsLibravatar Héctor Ramón2020-03-311-1/+2
|\ | | | | Application flags
| * Allow passing external state to `Application::new`Libravatar Héctor Ramón Jiménez2020-03-301-1/+2
| |
* | Implement `padding` support for `Container`Libravatar Héctor Ramón Jiménez2020-03-311-1/+1
|/
* Update `reqwest` in `pokedex` exampleLibravatar Héctor Ramón Jiménez2020-03-061-5/+9
|
* Add `font-family` to `Text` style in `iced_web`Libravatar Héctor Ramón Jiménez2020-02-061-0/+1
|
* Allow switching `executor::Default` with featuresLibravatar Héctor Ramón Jiménez2020-02-062-8/+2
|
* Make `pokedex` example work on WasmLibravatar Héctor Ramón Jiménez2020-02-052-11/+37
|
* Use `reqwest` and `tokio` in `pokedex` exampleLibravatar Héctor Ramón Jiménez2020-02-052-10/+10
|