Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
Alexis Lozano edited this page Sep 21, 2019 · 6 revisions

Preamble

Docs | Repo | Wiki | Crate

Neutrino is a MVC GUI framework written in Rust. It lets users create GUI applications by positioning widgets on a window and by handling events. Neutrino is based on the web-view crate provided by Boscop. As such, Neutrino renders the application using web technologies as HTML and CSS.

As it is based on web-view, Neutrino does not embed a whole web browser. So don't worry, due to the very lightweight footprint of web-view, you won't have to buy more memory for your computer.

Install

In order to use Neutrino, you will have to use cargo. Just add the following line to your Cargo.toml and you'll be done :

neutrino = "<last_version>"

Examples

  1. Preamble
  2. Install
  3. Examples
  1. Preamble
  2. Your first window
  3. Add a label
  4. Conclusion
  1. Preamble
  2. What is MVC ?
  3. A simple counter
  4. Conclusion
  1. Preamble
  2. Display an image
  3. Add the previous and next buttons
  4. Add the menu bar
  5. Add keyboard shortcuts
  6. Conclusion
  1. Preamble
  2. User-defined styles
  3. Neutrino-defined themes
  4. Icons
  5. Conclusion
  1. Preamble
  2. Time generated events
  3. Side Pane
Clone this wiki locally