summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement `Empty` widgetLibravatar Héctor Ramón Jiménez2019-12-301-2/+2
| | | | It can be useful if you want to fill some space with nothing.
* Merge pull request #122 from hecrj/feature/event-subscriptionsLibravatar Héctor Ramón2019-12-164-25/+298
|\ | | | | Event subscriptions
| * Port `todos` to `async_std`Libravatar Héctor Ramón Jiménez2019-12-141-11/+16
| |
| * Write docs for subscriptions and reorganize a bitLibravatar Héctor Ramón Jiménez2019-12-142-2/+2
| |
| * Make `iced_native` subscription input opaqueLibravatar Héctor Ramón Jiménez2019-12-141-4/+4
| |
| * Move native events subscription to `iced_native`Libravatar Héctor Ramón Jiménez2019-12-141-35/+7
| |
| * Hash `Duration` of `time::Every` in `stopwatch`Libravatar Héctor Ramón Jiménez2019-12-141-0/+1
| |
| * Use generic `Hasher` in `stopwatch`Libravatar Héctor Ramón Jiménez2019-12-141-3/+4
| |
| * Consume `Recipe` when building a `Stream`Libravatar Héctor Ramón Jiménez2019-12-142-2/+2
| |
| * Rename `timer` example to `stopwatch`Libravatar Héctor Ramón Jiménez2019-12-141-6/+6
| |
| * Use `surf` in `pokedex` exampleLibravatar Héctor Ramón Jiménez2019-12-142-15/+10
| |
| * Add `timer` exampleLibravatar Héctor Ramón Jiménez2019-12-132-2/+180
| |
| * Simplify `events` exampleLibravatar Héctor Ramón Jiménez2019-12-101-6/+6
| |
| * Implement `Subscription::map` and `from_recipe`Libravatar Héctor Ramón Jiménez2019-12-101-23/+15
| |
| * Rename `clock` example to `events`Libravatar Héctor Ramón Jiménez2019-12-091-43/+37
| |
| * Allow listening to runtime events in subscriptionsLibravatar Héctor Ramón Jiménez2019-12-081-11/+9
| |
| * Merge branch 'master' into feature/event-subscriptionsLibravatar Héctor Ramón Jiménez2019-12-082-11/+177
| |\
| * | Use `oneshot` and `future::select` to cancel streamsLibravatar Héctor Ramón Jiménez2019-12-071-39/+10
| | |
| * | Add `clock` exampleLibravatar Héctor Ramón Jiménez2019-12-051-0/+166
| | |
* | | Put `svg` rendering behind a feature gateLibravatar Héctor Ramón Jiménez2019-12-151-3/+17
| | | | | | | | | | | | This reduces binary size when SVG supoprt is not needed.
* | | Add `svg` exampleLibravatar Héctor Ramón Jiménez2019-12-152-0/+765
| |/ |/|
* | Merge pull request #113 from hecrj/feature/password-inputLibravatar Héctor Ramón2019-12-081-11/+32
|\ \ | | | | | | Password input
| * | Update native `CHANGELOG`Libravatar Héctor Ramón Jiménez2019-12-081-1/+0
| | |
| * | Showcase new `TextInput::password` in `tour`Libravatar Héctor Ramón Jiménez2019-12-071-11/+33
| | |
* | | Simplify `custom_widget` exampleLibravatar Héctor Ramón Jiménez2019-12-071-10/+6
|/ /
* / Add `custom_widget` exampleLibravatar Héctor Ramón Jiménez2019-12-071-0/+149
|/ | | | | It showcases how to build a simple native custom widget that draws a circle.
* Make `Button::background` genericLibravatar Héctor Ramón Jiménez2019-12-053-16/+13
|
* Implemented `From<Color` for `Background`Libravatar Malte Veerman2019-12-043-18/+11
|
* Rename `image::Handle::from_bytes` to `from_memory`Libravatar Héctor Ramón Jiménez2019-12-042-202/+231
| | | | | Also, replace `image` example with a new `pokedex` example using the PokéAPI.
* Implement `image` viewer exampleLibravatar Héctor Ramón Jiménez2019-11-301-0/+202
|
* Add simple counter exampleLibravatar Héctor Ramón Jiménez2019-11-261-0/+56
|
* Allow `Application` configuration with `Settings`Libravatar Héctor Ramón Jiménez2019-11-252-4/+4
|
* Merge pull request #66 from hecrj/feature/new-web-tourLibravatar Héctor Ramón2019-11-241-5/+13
|\ | | | | Make `tour` work with `iced_web` again
| * Add warning on debugger tour section in webLibravatar Héctor Ramón Jiménez2019-11-241-5/+13
| |
* | Avoid unnecessary panic in `todos`Libravatar Héctor Ramón Jiménez2019-11-241-4/+5
|/
* Merge branch 'master' into improvement/docsLibravatar Héctor Ramón Jiménez2019-11-224-138/+35
|\
| * Remove `scroll` example and `tour.html`Libravatar Héctor Ramón Jiménez2019-11-202-98/+0
| |
| * Update examples `README`Libravatar Héctor Ramón Jiménez2019-11-201-39/+34
| |
| * Disable debug view by default in `tour` exampleLibravatar Héctor Ramón Jiménez2019-11-201-1/+1
| |
* | Implement `iced::Sandbox` trait for simple appsLibravatar Héctor Ramón Jiménez2019-11-211-18/+13
| |
* | Move widgets from `core` to `native` and `web`Libravatar Héctor Ramón Jiménez2019-11-212-8/+8
|/ | | | Also made fields private and improved `Renderer` traits.
* 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.