conrod_example_shared 0.62.0

A small crate for sharing common code between conrod examples.
Documentation

This crate is used for sharing a few items between the conrod examples.

The module contains:

  • pub struct DemoApp as a demonstration of some state we want to change.
  • pub fn gui as a demonstration of all widgets, some of which mutate our DemoApp.
  • pub struct Ids - a set of all widget::Ids used in the gui fn.

By sharing these items between these examples, we can test and ensure that the different events and drawing backends behave in the same manner.