summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Improve persistence in `todos`Libravatar Héctor Ramón Jiménez2019-11-181-47/+53
|
* Rename `Command::attempt` to `Command::perform`Libravatar Héctor Ramón Jiménez2019-11-181-2/+2
|
* Save `todos` async in a JSON file and load on bootLibravatar Héctor Ramón Jiménez2019-11-171-86/+254
|
* Support async actions in `iced_winit`Libravatar Héctor Ramón Jiménez2019-11-173-24/+40
|
* Draw proper checkmark for `Checkbox` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-11-141-1/+1
|
* Add filter controls to `todos` example :tada:Libravatar Héctor Ramón Jiménez2019-11-141-23/+135
|
* Remove argument from `text_input::State::focused`Libravatar Héctor Ramón Jiménez2019-11-131-1/+1
|
* Implement task edition/deletion in `todos` exampleLibravatar Héctor Ramón Jiménez2019-11-132-16/+162
|
* Remove default styling of `Button`Libravatar Héctor Ramón Jiménez2019-11-131-0/+1
| | | | | - A background will only show if explicitly set. - `iced_wgpu` won't apply a `min_width` of 100 units anymore.
* Fix doc comments and remove `Align` from `tour`Libravatar Héctor Ramón Jiménez2019-11-111-1/+1
|
* Split text measurements cache from rendering cacheLibravatar Héctor Ramón Jiménez2019-11-111-2/+2
| | | | | This speeds up layouting in the most common scenario considerably! :tada:
* Remove `padding` from `Container` for nowLibravatar Héctor Ramón Jiménez2019-11-111-6/+5
|
* Implement `Container` widgetLibravatar Héctor Ramón Jiménez2019-11-112-34/+31
| | | | Remove `align_self` and `justify_content` methods
* Draft custom layout engine based on `druid`Libravatar Héctor Ramón Jiménez2019-11-112-4/+4
|
* Allow applications to control the window titleLibravatar Héctor Ramón Jiménez2019-11-093-18/+45
| | | | `iced_winit` will change the window title dynamically at runtime!
* use `String::clone` in todo exampleLibravatar memoryruins2019-11-071-1/+1
|
* Merge branch 'master' into feature/performance-metricsLibravatar Héctor Ramón Jiménez2019-11-051-14/+17
|\
| * Merge branch 'master' into feature/text-inputLibravatar Héctor Ramón Jiménez2019-11-031-14/+17
| |\
| | * Show Ferris at the end of the scrollable sectionLibravatar Héctor Ramón Jiménez2019-11-021-14/+17
| | |
* | | Implement debug view and load system fontsLibravatar Héctor Ramón Jiménez2019-11-033-202/+0
|/ /
* | Add text input section to `tour`Libravatar Héctor Ramón Jiménez2019-11-021-5/+55
| |
* | Merge branch 'feature/scrollables' into feature/text-inputLibravatar Héctor Ramón Jiménez2019-11-021-6/+40
|\|
| * Add scrollable section to `tour`Libravatar Héctor Ramón Jiménez2019-11-021-6/+40
| |
* | Implement cursor movement in `TextInput`Libravatar Héctor Ramón Jiménez2019-10-311-20/+20
| |
* | Implement task addition in `todos` exampleLibravatar Héctor Ramón Jiménez2019-10-301-8/+55
| |
* | Draft `TextInput` widget structureLibravatar Héctor Ramón Jiménez2019-10-301-0/+69
|/ | | | Also started a `todos` example to showcase it!
* Implement text clipping (caching still broken)Libravatar Héctor Ramón Jiménez2019-10-281-11/+5
|
* Improve `scroll` exampleLibravatar Héctor Ramón Jiménez2019-10-271-28/+39
|
* Implement clipping for imagesLibravatar Héctor Ramón Jiménez2019-10-271-13/+15
|
* Expose scrollable offset properlyLibravatar Héctor Ramón Jiménez2019-10-271-11/+10
|
* Draft `Scrollable` widget (no clipping yet!)Libravatar Héctor Ramón Jiménez2019-10-251-0/+69
|
* Remove unnecessary commaLibravatar Héctor Ramón Jiménez2019-10-231-1/+1
|
* Update `README`sLibravatar Héctor Ramón Jiménez2019-10-231-2/+12
|
* Make `tour` example work on Wasm againLibravatar Héctor Ramón Jiménez2019-10-232-6/+20
|
* Implement basic image rendering in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-10-231-4/+13
|
* Update examples `README`Libravatar Héctor Ramón Jiménez2019-10-131-52/+28
|
* Add a slight shadow to buttons for feedbackLibravatar Héctor Ramón Jiménez2019-10-121-8/+8
|
* Move `winit` logic from `iced` to `iced_winit`Libravatar Héctor Ramón Jiménez2019-10-091-4/+4
| | | | | | | | | | - Added new `renderer::Windowed` trait. This shoud allow users to easily try different renderers by simply changing one line. - Renamed `UserInterface` traits to `Application`, as the `run` method takes total control of the current thread. - Moved `MouseCursor` back to `iced_native`. The new `renderer::Windowed` trait returns one on `draw`. - Split `iced_native` renderer in multiple modules, for consistency.
* Merge branch 'master' into basic-rendererLibravatar Héctor Ramón Jiménez2019-10-081-2/+2
|\
| * Fix missing "is" in tourLibravatar Héctor Ramón Jiménez2019-10-081-2/+2
| |
* | Make `iced_core::Button` customizableLibravatar Héctor Ramón Jiménez2019-10-081-7/+45
| | | | | | | | | | | | | | Now it supports: - Any kind of content - Custom border radius - Custom background
* | Render colored quadsLibravatar Héctor Ramón Jiménez2019-10-071-0/+2
| |
* | Make `tour` a simple example instead of a crateLibravatar Héctor Ramón Jiménez2019-10-068-78/+0
| |
* | Center `tour` exampleLibravatar Héctor Ramón Jiménez2019-10-051-3/+12
| |
* | Merge branch 'master' into basic-rendererLibravatar Héctor Ramón Jiménez2019-10-051-3/+7
|\|
| * Update welcome step of `tour` exampleLibravatar Héctor Ramón Jiménez2019-10-051-4/+8
| |
* | Add some padding to the `tour` exampleLibravatar Héctor Ramón Jiménez2019-10-051-0/+1
| |
* | Start `iced_winit` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-10-0316-1545/+548
|/
* Merge branch 'master' into webLibravatar Héctor Ramón Jiménez2019-09-212-0/+3
|\
| * Remove `extern crate` and `log` dependencyLibravatar Héctor Ramón Jiménez2019-09-161-3/+2
| |