Draft basic styling for Container

This commit is contained in:
Héctor Ramón Jiménez 2019-12-31 11:36:54 +01:00
parent 8caa66be27
commit fb9cc0262b
6 changed files with 126 additions and 11 deletions

View file

@ -1,5 +1,5 @@
use crate::{
conversion,
container, conversion,
input::{keyboard, mouse},
renderer::{Target, Windowed},
subscription, Cache, Clipboard, Command, Container, Debug, Element, Event,
@ -18,7 +18,7 @@ pub trait Application: Sized {
/// The renderer to use to draw the [`Application`].
///
/// [`Application`]: trait.Application.html
type Renderer: Windowed;
type Renderer: Windowed + container::Renderer;
/// The type of __messages__ your [`Application`] will produce.
///