fuse-open / fuselibs

Fuselibs is the Uno-libraries that provide the UI framework used in Fuse apps
https://npmjs.com/package/@fuse-open/fuselibs
MIT License
176 stars 72 forks source link

Enhancement on Statusbar #1355

Closed ichan-mb closed 4 years ago

ichan-mb commented 4 years ago

Android.StatusBarConfig added Style property to change status bar text color to Dark or Light. Introduce SetStatusBarUI trigger action to set the look and feel of the status bar

Example:

    <App>
        <Android.StatusBarConfig Style="Dark" Color="#FFF" />
        <Page Color="#EE430A">
            <Activated>
                <SetStatusBarUI Style="Light" Color="#EE430A" />
            </Activated>
        </Page>
    </App>

This PR contains: