Package examples and remove dev-dependencies

This commit is contained in:
Héctor Ramón Jiménez 2020-01-20 06:27:01 +01:00
parent 04086a90c9
commit 7cea737115
30 changed files with 193 additions and 78 deletions

37
examples/svg/src/main.rs Normal file
View file

@ -0,0 +1,37 @@
use iced::{Column, Container, Element, Length, Sandbox, Settings, Svg};
pub fn main() {
Tiger::run(Settings::default())
}
#[derive(Default)]
struct Tiger;
impl Sandbox for Tiger {
type Message = ();
fn new() -> Self {
Self::default()
}
fn title(&self) -> String {
String::from("SVG - Iced")
}
fn update(&mut self, _message: ()) {}
fn view(&mut self) -> Element<()> {
let content = Column::new().padding(20).push(
Svg::new(format!("{}/tiger.svg", env!("CARGO_MANIFEST_DIR")))
.width(Length::Fill)
.height(Length::Fill),
);
Container::new(content)
.width(Length::Fill)
.height(Length::Fill)
.center_x()
.center_y()
.into()
}
}