Implement time::every in iced_futures
This commit is contained in:
parent
bb9ccc4f62
commit
e2076612cb
14 changed files with 110 additions and 169 deletions
|
|
@ -1,14 +1,13 @@
|
|||
//! This example showcases an interactive version of the Game of Life, invented
|
||||
//! by John Conway. It leverages a `Canvas` together with other widgets.
|
||||
mod style;
|
||||
mod time;
|
||||
|
||||
use grid::Grid;
|
||||
use iced::{
|
||||
button::{self, Button},
|
||||
executor,
|
||||
slider::{self, Slider},
|
||||
Align, Application, Column, Command, Container, Element, Length, Row,
|
||||
time, Align, Application, Column, Command, Container, Element, Length, Row,
|
||||
Settings, Subscription, Text,
|
||||
};
|
||||
use std::time::{Duration, Instant};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue