summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Package examples and remove `dev-dependencies`Libravatar Héctor Ramón Jiménez2020-01-201-2/+2
|
* Implement `WasmBindgen` executor and reorganizeLibravatar Héctor Ramón Jiménez2020-01-207-105/+140
|
* Add `Application::Executor` associated typeLibravatar Héctor Ramón Jiménez2020-01-205-10/+54
|
* Expose `window::Mode` in `iced`Libravatar Héctor Ramón Jiménez2020-01-166-26/+63
| | | | | Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side.
* Remove `Message: Clone` bound in `Sandbox`Libravatar Héctor Ramón Jiménez2020-01-131-1/+1
|
* Remove Clone bound on Application::MessageLibravatar Elliott Mahler2020-01-121-1/+1
|
* Write missing docs and reenable deny statementsLibravatar Héctor Ramón Jiménez2020-01-092-11/+5
|
* Implement styling for `Checkbox`Libravatar Héctor Ramón Jiménez2020-01-071-2/+2
|
* Implement styling for `Radio`Libravatar Héctor Ramón Jiménez2020-01-071-3/+3
|
* Implement styling for `ProgressBar`Libravatar Héctor Ramón Jiménez2020-01-071-3/+3
|
* Implement styling for `Slider`Libravatar Héctor Ramón Jiménez2020-01-071-11/+0
|
* Implement styling for `Scrollable`Libravatar Héctor Ramón Jiménez2020-01-061-14/+0
|
* Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2020-01-051-1/+1
|\
| * Expose `ProgressBar` in `iced` crateLibravatar Héctor Ramón Jiménez2020-01-041-1/+1
| |
* | Add border and shadow styling to `Button`Libravatar Héctor Ramón Jiménez2020-01-051-1/+1
| |
* | Remove `background` from `Settings`Libravatar Héctor Ramón Jiménez2020-01-051-8/+0
| |
* | Draft basic styling for `TextInput`Libravatar Héctor Ramón Jiménez2020-01-011-10/+0
| |
* | Allow configuration of default fontLibravatar Héctor Ramón Jiménez2020-01-012-1/+10
| |
* | Move styling to a brand new `iced_style` crateLibravatar Héctor Ramón Jiménez2020-01-011-10/+4
| |
* | Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2019-12-311-1/+1
|\|
| * Rename `Empty` widget to `Space`Libravatar Héctor Ramón Jiménez2019-12-301-2/+2
| |
| * 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.
* | Rename `Settings::background_color` to `background`Libravatar Héctor Ramón Jiménez2019-12-291-3/+3
| |
* | Add `background_color` to `Settings`Libravatar Héctor Ramón Jiménez2019-12-291-1/+17
| |
* | Draft `Style` and `StyleSheet` for `Button`Libravatar Héctor Ramón Jiménez2019-12-292-18/+2
|/
* Fix missing `Subscription` type in `iced_web`Libravatar Héctor Ramón Jiménez2019-12-181-2/+2
|
* Merge pull request #122 from hecrj/feature/event-subscriptionsLibravatar Héctor Ramón2019-12-163-3/+25
|\ | | | | Event subscriptions
| * Write docs for subscriptions and reorganize a bitLibravatar Héctor Ramón Jiménez2019-12-142-5/+14
| |
| * Allow listening to runtime events in subscriptionsLibravatar Héctor Ramón Jiménez2019-12-081-2/+2
| |
| * Draft first version of event subscriptions :tada:Libravatar Héctor Ramón Jiménez2019-12-053-4/+17
| |
* | Update `Svg` documentationLibravatar Héctor Ramón Jiménez2019-12-151-4/+4
| |
* | Renamed `Icon` widget to `Svg` and gave it separate width and height.Libravatar Malte Veerman2019-12-121-4/+4
| | | | | | | | The aspect ratio is now preserved like in the `Image` widget.
* | Ran cargo_fmt over changed files.Libravatar Malte Veerman2019-12-111-2/+2
| |
* | Added an `Icon` widget to native.Libravatar Malte Veerman2019-12-111-1/+6
|/
* Use cfg and path attribute instead of cfg_attr for IntelliJ Rust supportLibravatar Gabriel Konat2019-12-041-2/+5
|
* Merge branch 'master' into feature/image-from-bytesLibravatar Héctor Ramón Jiménez2019-12-041-0/+6
|\
| * Add `decorations` to `settings::Window`Libravatar Héctor Ramón Jiménez2019-12-031-4/+12
| |
| * Modify src/settings.rs to keep original APILibravatar hatoo2019-12-021-16/+4
| |
| * Remove platform-specific logic from icedLibravatar hatoo2019-12-013-47/+2
| | | | | | | | Make Window.platform_specific use iced_winit::settings::PlatformSpecific
| * Add platform specific settingsLibravatar hatoo2019-11-303-0/+50
| |
| * Add `decorations` to SettingLibravatar hatoo2019-11-301-0/+5
| |
* | Implement `image` viewer exampleLibravatar Héctor Ramón Jiménez2019-11-301-2/+7
|/
* Merge pull request #68 from hecrj/feature/application-settingsLibravatar Héctor Ramón2019-11-254-10/+56
|\ | | | | Allow `Application` configuration with `Settings`
| * Allow `Application` configuration with `Settings`Libravatar Héctor Ramón Jiménez2019-11-254-10/+56
| |
* | Update debug view GIF in `README`Libravatar Héctor Ramón Jiménez2019-11-251-1/+1
|/
* Merge pull request #66 from hecrj/feature/new-web-tourLibravatar Héctor Ramón2019-11-242-6/+16
|\ | | | | Make `tour` work with `iced_web` again
| * Spawn `Command` futures in `iced_web`Libravatar Héctor Ramón Jiménez2019-11-242-2/+2
| |
| * Make `tour` work with `iced_web` again :tada:Libravatar Héctor Ramón Jiménez2019-11-231-4/+14
| | | | | | | | | | - Implements `TextInput`, `Scrollable`, and `Container` - Adds basic style generation
* | Fix `examples` link in documentationLibravatar Héctor Ramón Jiménez2019-11-231-1/+1
|/
* Write docs for `iced` and `iced_native`Libravatar Héctor Ramón Jiménez2019-11-224-6/+480
|