package com.rnimmersivemode;

class ImmersiveMode {
    static final int Normal = 1;       // show status and navigation
    static final int Full = 2;         // hide status and navigation
    static final int FullSticky = 3;   // hide status and navigation with sticky
    static final int Bottom = 4;       // hide navigation
    static final int BottomSticky = 5; // hide navigation with sticky
}
