init repo
This commit is contained in:
commit
1949a815ee
7 changed files with 4152 additions and 0 deletions
18
src/main.rs
Normal file
18
src/main.rs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
use iced::{Element, Renderer, Theme, widget};
|
||||
|
||||
enum Message {}
|
||||
|
||||
struct State {}
|
||||
impl State {
|
||||
fn new() -> Self {
|
||||
Self {}
|
||||
}
|
||||
fn view(&self) -> Element<'_, Message, Theme, Renderer> {
|
||||
widget::space().into()
|
||||
}
|
||||
fn update(&mut self, message: Message) {}
|
||||
}
|
||||
|
||||
fn main() -> Result<(), iced::Error> {
|
||||
iced::application(State::new, State::update, State::view).run()
|
||||
}
|
||||
Loading…
Reference in a new issue