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

Fix headlines issue in Markdown format #412

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ Some components have custom attributes, if you want use them, you must add this
></com.gc.materialdesign.views.ScrollView>
>```

##Components
## Components

####Buttons
#### Buttons

######Flat Button
###### Flat Button

![flat button](images/flat_button.png)
```xml
Expand All @@ -86,7 +86,7 @@ Some components have custom attributes, if you want use them, you must add this
android:text="Button" />
```

######Rectangle Button
###### Rectangle Button

![rectangle button](images/rectangle_button.png)
```xml
Expand All @@ -98,7 +98,7 @@ Some components have custom attributes, if you want use them, you must add this
android:text="Button" />
```

######Float Button
###### Float Button

![float button](images/float_button.png)

Expand Down Expand Up @@ -126,7 +126,7 @@ Some components have custom attributes, if you want use them, you must add this
</RelativeLayout>
```

######Float small button
###### Float small button

![float small button](images/float_small_button.png)

Expand All @@ -139,9 +139,9 @@ Some components have custom attributes, if you want use them, you must add this
materialdesign:iconDrawable="@drawable/ic_action_new" />
```

####Switches
#### Switches

######CheckBox
###### CheckBox
![checkbox](images/checkbox.png)

```xml
Expand All @@ -153,7 +153,7 @@ Some components have custom attributes, if you want use them, you must add this
materialdesign:check="true" />
```

######Switch
###### Switch
![switch](images/switch.png)

```xml
Expand All @@ -165,9 +165,9 @@ Some components have custom attributes, if you want use them, you must add this
materialdesign:check="true" />
```

####Progress indicators
#### Progress indicators

######Progress bar circular indeterminate
###### Progress bar circular indeterminate
![progress bar circular indeterminate](images/progress_bar_circular_indeterminate.png)

```xml
Expand All @@ -178,7 +178,7 @@ Some components have custom attributes, if you want use them, you must add this
android:background="#1E88E5" />
```

######Progress bar indeterminate
###### Progress bar indeterminate
![progress bar indeterminate](images/progress_bar_indeterminate.png)

```xml
Expand All @@ -189,7 +189,7 @@ Some components have custom attributes, if you want use them, you must add this
android:background="#1E88E5" />
```

######Progress bar indeterminate determinate
###### Progress bar indeterminate determinate
![Progress bar indeterminate determinate](images/progress_bar_indeterminate_determinate.png)


Expand All @@ -207,7 +207,7 @@ Some components have custom attributes, if you want use them, you must add this
>progressBarIndeterminateDeterminate.setProgress(progress);
>```

######Progress bar determinate
###### Progress bar determinate
![Progress bar determinate](images/progress_bar_determinate.png)


Expand All @@ -221,7 +221,7 @@ Some components have custom attributes, if you want use them, you must add this

>You can custom max and min progress values with `materialdesign:max="50"` and `materialdesign:min="25"` attributes.

######Slider
###### Slider
![Slider](images/slider.png)


Expand All @@ -236,7 +236,7 @@ Some components have custom attributes, if you want use them, you must add this
/>
```

######Slider with number indicator
###### Slider with number indicator
![Slider with number indicator](images/slider_with_number_indicator.png)


Expand All @@ -251,9 +251,9 @@ Some components have custom attributes, if you want use them, you must add this
materialdesign:showNumberIndicator="true"/>
```

##Widgets
## Widgets

####SnackBar
#### SnackBar

![Snackbar](images/snackbar.png)

Expand All @@ -265,7 +265,7 @@ snackbar.show();

> If you don't want to show the button, put `null` in `buttonText` attribute

####Dialog
#### Dialog

![Dialog](images/dialog.png)

Expand All @@ -286,7 +286,7 @@ dialog.show();
>ButtonFlat cancelButton = dialog.getButtonCancel();
>```

####Color selector
#### Color selector

![Color selector](images/color_selector.png)

Expand Down