Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onai/iced-datepicker
DatePicker is an interactive calendar built with Iced. It lets the user pick a date in the calendar.
https://github.com/onai/iced-datepicker
calendar calendar-widget iced rust ui widgets
Last synced: about 1 month ago
JSON representation
DatePicker is an interactive calendar built with Iced. It lets the user pick a date in the calendar.
- Host: GitHub
- URL: https://github.com/onai/iced-datepicker
- Owner: onai
- License: mit
- Created: 2020-06-09T18:14:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-09T19:07:44.000Z (over 4 years ago)
- Last Synced: 2024-10-25T10:39:24.950Z (3 months ago)
- Topics: calendar, calendar-widget, iced, rust, ui, widgets
- Language: Rust
- Size: 291 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DatePicker
DatePicker is an interactive calendar built with Iced. It lets the user pick a date in the calendar.
![](./images/date_picker.gif)
# How to run
Run it with `cargo run`:
```
cargo run
```# About the warning
![](./images/warning.png)
This warning pops up because our widget depends on `iced_native`, and `iced_graphics`, which are sub-folders in `iced`. However, `iced` doesn't export these two modules. The version of these two crates in crates.io is also too old to use, so we have to use ```git + path``` to specify the version and location. In the future, this warning can be easily removed by bumping the versions of `iced`, `iced_native`, and `iced_graphics`. For more information, refer to this issue https://github.com/rust-lang/cargo/issues/1462
# Dependencies
- [Iced: 94af34884667e78e231fb1904ae3e9fa785c9a7a](https://github.com/hecrj/iced/tree/94af34884667e78e231fb1904ae3e9fa785c9a7a)