Skip to content

Color Theme

Starting from the Document Reader SDK release 8.1, the UI color scheme is synchronized with the currently selected OS theme (dark / light).

See the following example.

Mobile UI example in light and dark color themes with status bar highlighted

If you need more color options, try customizing the background (mask color and alpha).

Status Bar

In Android, a status bar, containing notification and system icons, is automatically hidden by default. To explicitly show/hide a status bar, use the parameter:

DocumentReader.Instance().functionality().edit().setHideStatusBar(true).apply()
DocumentReader.Instance().functionality().edit().setHideStatusBar(true).apply();
DocumentReader.instance.functionality.hideStatusBar = true;
DocumentReader.instance.functionality.hideStatusBar = true
DocumentReader.setFunctionality({
    hideStatusBar: true,
}, (str) => { console.log(str) }, (error) => { console.log(error) });
DocumentReader.setFunctionality({
    hideStatusBar: true
});
DocumentReader.setFunctionality({
    hideStatusBar: true,
}, function (m) { }, function (e) { console.log(e); });
// Android
DocumentReader.Instance().Functionality().Edit().SetHideStatusBar(true).Apply();