Created
October 3, 2019 07:22
-
-
Save ricknout/393e14ee023061b902735eb492fa5417 to your computer and use it in GitHub Desktop.
A Git patch to be applied to https://github.com/material-components/material-components-android to reveal the Slider catalog demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: catalog/build.gradle | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- catalog/build.gradle (revision 4d719031e44ca4573e34d5c9d1ce3a72e7c5d5e4) | |
+++ catalog/build.gradle (date 1570086427000) | |
@@ -58,6 +58,7 @@ | |
'menu', | |
'radiobutton', | |
'shapetheming', | |
+ 'slider', | |
'switchmaterial', | |
'tableofcontents', | |
'tabs', | |
Index: catalog/java/io/material/catalog/tableofcontents/TocModule.java | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- catalog/java/io/material/catalog/tableofcontents/TocModule.java (revision 4d719031e44ca4573e34d5c9d1ce3a72e7c5d5e4) | |
+++ catalog/java/io/material/catalog/tableofcontents/TocModule.java (date 1570086481000) | |
@@ -34,6 +34,7 @@ | |
import io.material.catalog.menu.MenuFragment; | |
import io.material.catalog.radiobutton.RadioButtonFragment; | |
import io.material.catalog.shapetheming.ShapeThemingFragment; | |
+import io.material.catalog.slider.SliderFragment; | |
import io.material.catalog.switchmaterial.SwitchFragment; | |
import io.material.catalog.tabs.TabsFragment; | |
import io.material.catalog.textfield.TextFieldFragment; | |
@@ -60,6 +61,7 @@ | |
DatePickerDemoLandingFragment.Module.class, | |
RadioButtonFragment.Module.class, | |
ShapeThemingFragment.Module.class, | |
+ SliderFragment.Module.class, | |
SwitchFragment.Module.class, | |
TabsFragment.Module.class, | |
TextFieldFragment.Module.class, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment