Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filled progressbar #264

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open

Filled progressbar #264

wants to merge 2 commits into from

Commits on Nov 12, 2019

  1. Slightly changed ms_stepper_layout to allow for a filled progress bar…

    … (fills width and height of the navigation bar) by setting a ms_stepperLayoutTheme similar to this:
    
        <style name="FilledProgressStepperLayoutTheme" parent="CustomStepperLayoutTheme">
            <item name="ms_colorableProgressBarStyle">@style/FilledProgressStepperLayoutStyle</item>
        </style>
    
        <style name="FilledProgressStepperLayoutStyle" parent="MSColorableProgressBar">
            <item name="android:layout_width">match_parent</item>
            <item name="android:layout_height">match_parent</item>
        </style>
    
    The progress_bar stepper type can still be used as before by not applying a theme.
    
    (cherry picked from commit 29b8146)
    joymyr committed Nov 12, 2019
    Configuration menu
    Copy the full SHA
    f95396e View commit details
    Browse the repository at this point in the history
  2. Added sample for a filled progress bar

    (cherry picked from commit 9fae6bf)
    joymyr committed Nov 12, 2019
    Configuration menu
    Copy the full SHA
    f8cee88 View commit details
    Browse the repository at this point in the history