Skip to content

Commit 24a6b88

Browse files
authored
Merge pull request #314 from aspnetzero/pr/5381
Minimize maui document images
2 parents 1caaa4f + 1c09997 commit 24a6b88

6 files changed

Lines changed: 25 additions & 12 deletions

File tree

docs/en/Developing-Step-By-Step-MAUI.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -341,13 +341,13 @@ button and enter **default** into the textbox in the opened modal. If the tenant
341341
label. If the tenant is not active or does not exist, then you'll get an
342342
alert about that.
343343

344-
<img src="images/maui-login.png" alt="Login Screen" class="img-thumbnail" />
344+
<img src="images/maui-login.png" alt="Login Screen" class="img-thumbnail" width="350"/>
345345

346346
Enter your credentials and tap **Log In** button.
347347
When you successfully login, you can see the below screen with new
348348
**People** menu item.
349349

350-
<img src="images/maui-phonebook-empty-phonebook.png" alt="People" class="img-thumbnail" />
350+
<img src="images/maui-phonebook-empty-phonebook.png" alt="People" class="img-thumbnail" width="350"/>
351351

352352
Up to here we successfully added an empty People page. Let's populate
353353
the view with data.
@@ -590,9 +590,17 @@ _Index.razor_
590590
```
591591
Now you can create person, list it and edit it.
592592

593-
<img src="images/maui-create-person.png" alt="Create Person" class="img-thumbnail" />
594-
<img src="images/maui-list-person.png" alt="List Person" class="img-thumbnail" />
595-
<img src="images/maui-edit-person.png" alt="Edit Person" class="img-thumbnail" />
593+
*Create Person*
594+
595+
<img src="images/maui-create-person.png" alt="Create Person" class="img-thumbnail" width="350"/>
596+
597+
*List Person*
598+
599+
<img src="images/maui-list-person.png" alt="List Person" class="img-thumbnail" width="350"/>
600+
601+
*Edit Person*
602+
603+
<img src="images/maui-edit-person.png" alt="Edit Person" class="img-thumbnail" width="350"/>
596604

597605
#### Deleting Person
598606

@@ -662,8 +670,13 @@ _Index.razor_
662670
}
663671
```
664672

665-
<img src="images/maui-add-delete-button-to-list.png" alt="Add Delete Button" class="img-thumbnail" />
666-
<img src="images/maui-delete-person-prompt.png" alt="Delete Prompt" class="img-thumbnail" />
673+
*Delete button*
674+
675+
<img src="images/maui-add-delete-button-to-list.png" alt="Add Delete Button" class="img-thumbnail" width="350"/>
676+
677+
*Delete confirmation*
678+
679+
<img src="images/maui-delete-person-prompt.png" alt="Delete Prompt" class="img-thumbnail" width="350"/>
667680

668681
## Conclusion
669682

docs/en/Development-Guide-MAUI.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ DebugServerIpAddresses.Current = "XXX.XXX.XXX.XXX";
151151

152152
MAUI project has a very basic structure. ASP.NET Zero adds or modifies these files in the default project;
153153

154-
![Project Structure](images/maui-project-struction.png)
154+
<img src="/images/maui-project-struction.png" width="350" alt="Project Structure">
155155

156156
Android Project Structure
157157

@@ -211,7 +211,7 @@ first authorized menu item.
211211

212212
##### Login
213213

214-
![MAUI Login Screen](images/maui-login.png)
214+
<img src="/images/images/maui-login.png" width="350" alt="MAUI Login Screen">
215215

216216
When user enters credentials `AccessTokenManager` authenticates user,
217217
stores access token in memory. For authentication needed Api calls, this
@@ -225,14 +225,14 @@ it can be retrieved with injecting `IApplicationContext`.
225225

226226
##### Menu
227227

228-
![Application Menu](images/maui-menu.png)
228+
<img src="/images/maui-menu.png" width="350" alt="Application Menu">
229229

230230
Menu items are stored in `MenuProvider` class. A menu item is shown if
231231
only user has granted required permission.
232232

233233
##### Tenants View
234234

235-
![Tenants Page](images/maui-tenant-page.png)
235+
<img src="/images/maui-tenant-page.png" width="350" alt="Tenants Page">
236236

237237
In this page you can see all tenants in your application. You can create new tenant, edit tenant or delete tenant. (If you have necessary permissions, otherwise you will not be able to see related buttons or page)
238238
There is a search bar on the top
@@ -245,7 +245,7 @@ Create Tenant | Edit Tenant | Delete Tenant
245245

246246
##### User View
247247

248-
![Users page](images/maui-user-list.png)
248+
<img src="/images/maui-user-list.png" width="350" alt="Users Page">
249249

250250
This page lists users of the tenant or tenant owner. It is only shown if
251251
the user has permission to this page. Same as tenants view, there's a

docs/en/images/maui-menu.png

-27.6 KB
Loading
112 KB
Loading
-23.8 KB
Loading

docs/en/images/maui-user-list.png

-25.1 KB
Loading

0 commit comments

Comments
 (0)