AkurAI Build
Menu

cosmic-mobile

public

Latest change 5798fd6f298b56561b4ab7b69485b23f282ea532 - Format native launcher by AkurAI Build

#[path = "../src/layout.rs"]
mod layout;
#[test]
fn reserves_phone_edges_in_both_orientations() {
    for (w, h) in [(450., 990.), (990., 450.), (360., 800.)] {
        let [left, top, right, bottom] = layout::safe_area(w, h);
        assert!(left >= 24. && top >= 52. && right <= w - 24. && bottom <= h - 34.);
        assert!(right - left >= 280. && bottom - top >= 300.);
    }
}