浏览代码

Enlarge images in tutorial docs

Aidan Follestad 5 年之前
父节点
当前提交
8bbd1218fc
共有 5 个文件被更改,包括 13 次插入13 次删除
  1. 3 3
      documentation/COLOR.md
  2. 1 1
      documentation/CORE.md
  3. 2 2
      documentation/DATETIME.md
  4. 5 5
      documentation/FILES.md
  5. 2 2
      documentation/INPUT.md

+ 3 - 3
documentation/COLOR.md

@@ -26,7 +26,7 @@ dependencies {
 
 Color choosers show a simple grid of colors.
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/color_chooser.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/color_chooser.png" width="250px" />
 
 ```kotlin
 val colors = intArrayOf(RED, GREEN, BLUE)
@@ -59,7 +59,7 @@ MaterialDialog(this).show {
 You can specify sub-colors, which are a level down from each top level color. The size of the top 
 level array must match the size of the sub-colors array.
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/color_chooser_sub.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/color_chooser_sub.png" width="250px" />
 
 ```kotlin
 val colors = intArrayOf(RED, GREEN, BLUE) // size = 3
@@ -81,7 +81,7 @@ MaterialDialog(this).show {
 
 ### ARGB Selection
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/custom_argb.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/custom_argb.png" width="250px" />
 
 ```kotlin
 MaterialDialog(this).show {

+ 1 - 1
documentation/CORE.md

@@ -543,7 +543,7 @@ change fonts, corner rounding, etc.
 Light and dark theming is automatic based on your app's theme (basically whether `android:textColorPrimary` 
 is more light or more dark):
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/lightanddarkthemes.png" width="400px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/lightanddarkthemes.png" width="500px" />
 
 ### Background Color
 

+ 2 - 2
documentation/DATETIME.md

@@ -22,7 +22,7 @@ dependencies {
 
 ## Date
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/datepicker.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/datepicker.png" width="250px" />
 
 ```kotlin
 MaterialDialog(this).show {
@@ -37,7 +37,7 @@ You can optionally provide `minDate` and `currentDate` parameters as well.
 
 ## Time
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/timepicker.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/timepicker.png" width="250px" />
 
 ```kotlin
 MaterialDialog(this).show {

+ 5 - 5
documentation/FILES.md

@@ -36,7 +36,7 @@ directory listings will come back empty.
 
 You create file choosers using the `fileChooser` extension on `MaterialDialog`:
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_chooser.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_chooser.png" width="250px" />
 
 ```kotlin
 MaterialDialog(this).show {
@@ -83,7 +83,7 @@ MaterialDialog(this).show {
 
 Empty text is shown when a folder has no contents. You can configure the empty text label:
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_emptytext.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_emptytext.png" width="250px" />
 
 ```kotlin
 MaterialDialog(this).show {
@@ -95,7 +95,7 @@ MaterialDialog(this).show {
 
 ### Folder Creation
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_folder_creation.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_folder_creation.png" width="250px" />
 
 You can allow your users to create folders. 
 
@@ -151,7 +151,7 @@ MaterialDialog(this).show {
 
 Empty text is shown when a folder has no contents. You can configure the empty text label:
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_emptytext.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_emptytext.png" width="250px" />
 
 ```kotlin
 MaterialDialog(this).show {
@@ -163,7 +163,7 @@ MaterialDialog(this).show {
 
 ### Folder Creation
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_folder_creation.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_folder_creation.png" width="250px" />
 
 You can allow your users to create folders. 
 

+ 2 - 2
documentation/INPUT.md

@@ -29,7 +29,7 @@ dependencies {
 
 You can setup an input dialog using the `input` extension on `MaterialDialog`:
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/input.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/input.png" width="250px" />
 
 ```kotlin
 MaterialDialog(this).show {
@@ -138,7 +138,7 @@ MaterialDialog(this).show {
 You can set a max length which makes a character counter visible, and disables the positive action 
 button if the input length goes over that:
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/input_max_length.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/input_max_length.png" width="250px" />
 
 ```kotlin
 MaterialDialog(this).show {