Skip to content

Commit 2ecccf4

Browse files
committed
chore: try to add redirect_url, failing on required properties uid
1 parent f1be386 commit 2ecccf4

File tree

13 files changed

+74
-34
lines changed

13 files changed

+74
-34
lines changed

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"files.associations": {
3+
"*.tmpl*": "mustache"
4+
},
5+
}

README.md

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# DevTKSS Uno Samples
22

3-
Welcome to this Samples and Tutorials Library! ❤️
3+
## Welcome to this Samples and Tutorials Library! ❤️
44

5-
The samples and Tutorials in this Repository are meant to help other Developers, also German Developers like me, independent to their pre-knowledge, get an Idea of how to use the shown things.
5+
The here contained samples and Tutorials are meant to help Developers, independent to their pre-knowledge, to get an Idea of:
66

7-
> [!TIP]
8-
> Check out the [Documentation](./doc/en/articles/introduction.md), for more a more detailed List and future coming Guides and Explanations.
7+
- How to get started with the [Uno Platform](https://platform.uno/)
8+
- How the Sampled Features and Controls can be used inside of our Applications
9+
10+
Because of the Uno Platform own provided Samples and guides are only English localized, I created this Sample Apps and Tutorials to help German speaking Developers, like myself, to get started with the Uno Platform in their native language.
911

1012
**Table of Contents** *(of this ReadMe)**
1113

@@ -23,6 +25,15 @@ Last but not least:
2325
- [Contributions Welcome!](#help-welcome)
2426
- [See also](#see-also)
2527

28+
Let me know if you have any questions or feedback!
29+
30+
In case you want to contribute, please feel free to open an [issue](./issues), [PR](./pulls) or [discussion](./discussions)!
31+
32+
If you would like the samples to be available in your language and you are willing to help out with the translation, please let me know as well!
33+
34+
> [!TIP]
35+
> Check out the [Documentation & Tutorials](/doc/articles/de/Introduction-de.md), for more a more detailed List and future coming Guides and Explanations.
36+
2637
## Mvux Gallery
2738

2839
![Mvux Gallery Showcase Thumbnail](./doc/articles/.attachments/DevTKSS%20Uno%20Mvux%20Samples%20Gallery%20App-Thumbnail.png)
@@ -71,21 +82,24 @@ To show you how to get to the end result of the Mvux Gallery App, I created a Tu
7182

7283
### Mvux.XamlNavigationApp
7384

74-
You want to use Mvux as your Presentation in Uno Platform Apps?
75-
You would like to use a NavigationView Control for the base Navigation Layout of your App?
76-
Your Markup is Xaml and you would like to get to know how the NavigationExtensions can help you to achieve this?
77-
Then this is the right Sample App for you, learning how to do this!
85+
![Image of final XamlNavigationApp](./doc/articles/.attachments/DevTKSS.Uno.XamlNavigationApp.png)
7886

79-
Here is a sneak peak of the end Result of the Xaml Navigation Tutorial you can explore 😍
87+
#### Content of the Tutorial
8088

81-
![Image of final XamlNavigationApp](./doc/articles/.attachments/DevTKSS.Uno.XamlNavigationApp.png)
89+
- [Uno.Extensions.Reactive also known as `Mvux`](https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Mvux/Overview.html)
90+
- [Uno.Extensions.Navigation](https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Navigation/NavigationOverview.html)
91+
- [Xaml Markup Navigation](https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Navigation/HowTo-NavigateInXAML.html)
8292

83-
Select your preferred Language for the Tutorial for this:
93+
[Discover the Source Code of the DevTKSS.Uno.XamlNavigationApp](./src/DevTKSS.Uno.XamlNavigationApp-1/)
94+
95+
#### Select your preferred Language
8496

8597
- [German Language](./doc/articles/de/Navigation/HowTo-Navigation-with-NavigationView-in-Mvux-and-Xaml.md)
8698
- [English Language](./doc/articles/Mvux.XamlNavigation/HowTo-Navigation-with-NavigationView-in-Mvux-and-Xaml.md)
8799

88-
[Source Code of the DevTKSS.Uno.XamlNavigationApp](./src/DevTKSS.Uno.XamlNavigationApp-1/) Project.
100+
> [!NOTE]
101+
> The Tutorial Video is available in German Language only, but there are subtitles available, which should work using auto translation to your preferred language.
102+
89103
<!--markdownlint-disable MD026 -->
90104
## Help Welcome!
91105

cSpell.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"node_modules/**",
3434
"dist/**",
3535
"src/*",
36-
"**.gitignore"
36+
"**.gitignore",
37+
"doc/templates/**"
3738
]
3839
}

doc/Resources/filterConfig.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,10 @@
22
apiRules:
33
- exclude:
44
uidRegex: ^Uno\.Resizetizer$
5-
type: namespace
5+
type: namespace
6+
- exclude:
7+
uidRegex: ^DevTKSS\.Uno\.Samples\.MvuxGallery\.ReactiveViewModelMappings$
8+
type: namespace
9+
- exclude:
10+
uidRegex: ^__Reactive$
11+
type: method

doc/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# DevTKSS.Uno.Samples.MvuxGallery
1+
# DevTKSS.Uno.Samples.MvuxGallery API Documentation
22

33
Use the table of contents to browse API documentation for the `DevTKSS.Uno.Samples` library.

doc/articles/de/Introduction-de.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Die Tutorials helfen dir – unabhängig von deinem Vorwissen – die gezeigten
1313

1414
## Erste Schritte
1515

16-
👉 [Umgebung einrichten für Uno Platform App-Entwicklung](xref:DevTKSS.Setup.DevelopmentEnvironment.de)
16+
👉 [Umgebung einrichten für Uno Platform App-Entwicklung](xref:DevTKSS.Uno.Setup.DevelopmentEnvironment.de)
1717

1818
---
1919

doc/articles/de/Navigation/Extensions-Navigation-de.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ Eine Anleitung und weitere nützliche Links hierzu findest du im [Tutorial: Einr
4343
Des hier lernst du, wie man Anwendung erstellt oder passend konfiguriert:
4444

4545
- [Erstellen einer Uno App mit Extensions Navigation](xref:DevTKSS.Uno.ExtensionsNavigation.HowTo-CreateApp.de)
46-
- [Upgrade einer existierenden Uno App](xref:DevTKSS.Uno.ExtensionsNavigation.HowTo-UpgradeExistingApp.de)
46+
- [Upgrade einer existierenden Uno App](xref:DevTKSS.Uno.ExtensionsNavigation.UpgradeExistingApp.de)
4747

4848
## Die Routen registrieren
4949

5050
- [Tutorial Routen Registrieren](xref:DevTKSS.Uno.ExtensionsNavigation.HowTo-RegisterRoutes.de)
5151

5252
## Das User Interface mit einer NavigationView erstellen
5353

54-
- [Tutorial: Erstellen des UI mit einer NavigationView in Xaml](xref:DevTKSS.Uno.ExtensionsNavigation.HowTo-Defining-UI-NavigationView.de)
54+
- [Tutorial: Erstellen des UI mit einer NavigationView in Xaml](xref:DevTKSS.Uno.ExtensionsNavigation.HowTo-Defining-UI.de)
5555

5656
## Das Model bzw. ViewModel erstellen
5757

@@ -63,7 +63,7 @@ Des hier lernst du, wie man Anwendung erstellt oder passend konfiguriert:
6363

6464
In diesem Video zeige ich dir, wie du das `NavigationView`-Steuerelement in einer XAML-Markup-App einrichtest und verwendest. Wir werden die Navigation zwischen verschiedenen Seiten implementieren und dabei die MVUX-Prinzipien anwenden.
6565

66-
![Navigation-in-Xaml-und-Mvux-mit-Navigation-View](https://youtu.be/knt2oOjHH30)
66+
![Navigation-in-Xaml-und-Mvux-mit-Navigation-View](https://youtube.com/knt2oOjHH30)
6767

6868
---
6969

doc/articles/en/MvuxGallery-Overview-en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Here is a list of Controls and Features you can explore in the MvuxGallery App w
2020
- [FeedView + ListView](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/ListboardPage.xaml)
2121
- [DataTemplate centralized Resource Definition](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Styles/Generic.xaml)
2222
- [`ItemOverlayTemplate` DataTemplate](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Styles/Generic.xaml) (*Layout replicated from WinUI 3 Gallery*)
23-
- [TabBar and TabBarItem](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/DashboardPage.xaml) and [Model for Binding Items to ListFeed](xref:DevTKSS.Uno.Samples.MvuxGallery.ViewModels.DashboardModel)
23+
- [TabBar and TabBarItem](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/DashboardPage.xaml) and [Model for Binding Items to ListFeed](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/DashboardPage.xaml.cs)
2424

2525
## Sampled Uno.Extensions
2626

@@ -38,7 +38,7 @@ Here is a list of Controls and Features you can explore in the MvuxGallery App w
3838
- (planned)
3939

4040
- Hosting
41-
- [App.xaml.cs](xref:DevTKSS.Uno.Samples.MvuxGallery.App)
41+
- [App.xaml.cs](../../../src/DevTKSS.Uno.Samples.MvuxGallery/App.xaml.cs)
4242

4343
- DependencyInjection
4444
- Service Registration

doc/docfx.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"disableDefaultFilter": false,
1515
"filter": "Resources/filterConfig.yml",
1616
"codeSourceBasePath": "../src",
17+
"noRestore": true,
1718
"output": "api",
18-
"memberLayout": "separatePages",
19-
"noRestore": true
19+
"memberLayout": "separatePages"
2020
}
2121
],
2222
"build": {
@@ -26,7 +26,14 @@
2626
"_appFaviconPath": "images/logo/styled-logo.ico",
2727
"_appLogoPath": "images/logo/styled-logo-small.png",
2828
"_copyrightFooter": "© 2025 Sonja Schweitzer, DevTKSS, TKSS Development, All rights reserved.",
29+
"_ownerName": "TKSS Development",
30+
"_githubProfileLink": "https://github.com/DevTKSS",
2931
"_enableSearch": true,
32+
"_disableAffix": false,
33+
"_disableBreadcrumb": false,
34+
"_disableNextArticle": false,
35+
"_disableTocFilter": false,
36+
"_lang": "csharp",
3037
"pdf": false
3138
},
3239
"content": [
@@ -39,7 +46,8 @@
3946
{
4047
"files": [
4148
"articles/**.{md,yml}",
42-
"toc.yml"
49+
"toc.yml",
50+
"index.md"
4351
]
4452
}
4553
],
@@ -58,7 +66,8 @@
5866
"api/**.md",
5967
"api/**.yml",
6068
"articles/**.md",
61-
"articles/**.yml"
69+
"articles/**.yml",
70+
"index.md"
6271
],
6372
"exclude":[
6473
"obj/**",

doc/index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
---
2+
redirect_url: 'articles/de/Introduction-de.html'
3+
---
14
<!-- markdownlint-disable MD041 MD033-->
2-
<meta http-equiv="refresh" content="0; url='articles/de/Introduction-de.md'" />
5+
<!-- <meta http-equiv="refresh" content="0; url='articles/de/Introduction-de.html'" /> -->

0 commit comments

Comments
 (0)