egui_stuff 0.1.0

Extra widgets and helpers to use within an egui application
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use egui::{Response, Ui, Widget};

/// Pie chart.
///
pub struct Piechart {}

impl Piechart {}

impl Widget for Piechart {
    fn ui(self, _ui: &mut Ui) -> Response {
        todo!()
    }
}