sge_ui 1.2.0

UI library for SGE
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;

pub struct LoadingSpinner;

impl LoadingSpinner {
    pub fn primary() -> UiRef {
        let scheme = scheme();
        let color = scheme.primary;
        crate::base::LoadingSpinner::new(color).square(50.0)
    }
}