Skip to content

Commit

Permalink
[ProgressIndicator] Removed old demos.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 592321521
  • Loading branch information
pekingme authored and paulfthomas committed Dec 21, 2023
1 parent cd0d94e commit 701d5c2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 745 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ public Fragment createFragment() {
return new ProgressIndicatorVisibilityDemoFragment();
}
});
additionalDemos.add(
new Demo(R.string.cat_progress_indicator_demo_standalone_title) {
@Override
public Fragment createFragment() {
return new ProgressIndicatorStandaloneDemoFragment();
}
});
return additionalDemos;
}

Expand All @@ -80,29 +87,9 @@ public Fragment createFragment() {
return new ProgressIndicatorMultiColorDemoFragment();
}
});
additionalDemos.add(
new Demo(R.string.cat_progress_indicator_demo_indeterminate_title) {
@Override
public Fragment createFragment() {
return new ProgressIndicatorIndeterminateDemoFragment();
}
});
additionalDemos.add(
new Demo(R.string.cat_progress_indicator_demo_determinate_title) {
@Override
public Fragment createFragment() {
return new ProgressIndicatorDeterminateDemoFragment();
}
});
additionalDemos.add(
new Demo(R.string.cat_progress_indicator_demo_standalone_title) {
@Override
public Fragment createFragment() {
return new ProgressIndicatorStandaloneDemoFragment();
}
});
return additionalDemos;
}

/** The Dagger module for {@link ProgressIndicatorFragment} dependencies. */
@dagger.Module
public abstract static class Module {
Expand Down

This file was deleted.

Loading

0 comments on commit 701d5c2

Please sign in to comment.