Skip to content

Commit f84888b

Browse files
committed
chore: Update Links in Doc
1 parent 2d2a89d commit f84888b

File tree

3 files changed

+23
-20
lines changed

3 files changed

+23
-20
lines changed

README.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,22 @@ The depending Documentation you can find [here](./doc/articles/MvuxGallery/Overv
3232
- Grid
3333
- NavigationView
3434
- `ItemOverlayTemplate` DataTemplate layout replicated from WinUI 3 Gallery
35+
- TabBar & TabBarItem
3536

3637
### Uno.Extensions to be explored here
3738

3839
- Mvux
40+
- ListFeed
41+
- State
3942
- Navigation
4043
- via Xaml
4144
- Hosting
4245
- DependencyInjection
4346
- Serialization
4447
- JsonSerializerContext of each DataModel
48+
- Using multiple `JsonSerializable(typeof...)` Attributes to extend the `CodeSampleOptionsContext.Default.<...>` Items
4549
- Configuration
46-
- Data for Serialization load from `appsettings.json`
50+
- Data for Serialization load from separate `appsettings.sampledata.json`
4751
- Storage
4852
- Directly in the Model Definition
4953
- Via Service
@@ -75,18 +79,21 @@ The depending Documentation you can find [here](./doc/articles/MvuxGallery/Overv
7579
- [x] Implement SampleCode Presenting like Gallery to have the src code side by side in the running app
7680
- [x] [Working State of DashboardPage](https://github.com/DevTKSS/UnoHotDesignApp1/commit/98fa25af8f23bb27c2dccac39d9248f3fc7254dd)
7781
- [ ] Fixing ThemeResource Styled that are not seeming to listen to Theme changes
78-
- [ ] Updating the Code Samples in Assets
79-
- [ ] (Re)record the video to show a final step by step Guide to Beginners like me and simplify the start with uno.extensions with Mvux.
82+
- [x] Updating the Code Samples in Assets
83+
- [ ] Record video guides in English and German Language to provide a step by step Guide for Beginners like me and simplify the start with uno.extensions with Mvux.
84+
- [x] Xaml Navigation with NavigationView (pending release)
85+
- [Documentation in German Language](./doc/articles/MvuxGallery/How-To-XamlNavigation.md)
86+
8087
<!--markdownlint-disable MD026 -->
8188
## Help Welcome!
8289

83-
If you want to help out, please feel free to open an issue or PR.
90+
If you want to help out, please feel free to open an [issue](./issues) or PR.
8491

85-
Every helping hand is welcom and I will try to merge it as soon as possible.
92+
Every helping hand is welcome and I will try to review and merge it as soon as possible.
8693

87-
## See also
94+
## See also
8895

8996
- [Uno Platform](https://platform.uno/)
90-
- [Documentation Intro](https://platform.uno/docs/articles/intro.html)
91-
- [Mvux Documentation](https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Mvux/Overview.html)
97+
- [Documentation Intro](https://platform.uno/docs/articles/intro.html)
98+
- [Mvux Documentation](https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Mvux/Overview.html)
9299
- [FeedView Control](https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Mvux/FeedView.html)

cSpell.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
// Add custom words here
77
"DevTKSS",
88
"Listboard",
9-
"Mvux"
9+
"Mvux",
10+
"appsettings",
11+
"sampledata"
1012
],
1113
"ignoreWords": [],
1214
"ignorePaths": [

doc/articles/MvuxGallery/Overview.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,19 @@ At the [Mvux Gallery](../../../src/DevTKSS.Uno.Samples.MvuxGallery/) you can exp
88

99
### Controls
1010

11-
- [FeedView + ListView](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/ListboardPage.xaml)
12-
- [DataTemplate centralized Resource Definition](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Styles/Generic.xaml)
1311
- [Card](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/SimpleCardsPage.xaml)
14-
- [`ItemOverlayTemplate` DataTemplate](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Styles/Generic.xaml) (*Layout replicated from WinUI 3 Gallery*)
15-
- [Counter](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/CounterPage.xaml)
16-
- [Settings](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/SettingsPage.xaml)
17-
- [FeedView + GridView](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/DashboardPage.xaml)
18-
- [FeedView + ListView](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/ListboardPage.xaml)
12+
- [Counter](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/CounterPage.xaml) and [CounterModel](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/ViewModels/CounterModel.cs)
13+
- [FeedView + GridView](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/DashboardPage.xaml)and [Model](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/ViewModels/DashboardModel.cs)
14+
- [FeedView + ListView](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/ListboardPage.xaml)and [Model](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/ViewModels/ListboardModel.cs)
1915
- [DataTemplate centralized Resource Definition](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Styles/Generic.xaml)
20-
- [Card](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/Views/SimpleCardsPage.xaml)
2116
- [`ItemOverlayTemplate` DataTemplate](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Styles/Generic.xaml) (*Layout replicated from WinUI 3 Gallery*)
17+
- [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/ViewModels/DashboardModel.cs)
2218

2319
### Uno.Extensions
2420

2521
- Mvux
26-
- Feed
2722
- ListFeed
2823
- State
29-
- ListState
3024

3125
--> Almost every Model, detailed overview will follow.
3226

@@ -54,7 +48,7 @@ At the [Mvux Gallery](../../../src/DevTKSS.Uno.Samples.MvuxGallery/) you can exp
5448
- Serialization
5549
- JsonSerializerContext of each DataModel
5650
- [CodeSampleOptionsContext](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Models/CodeSamples/CodeSampleOptions.cs)
57-
- [CodeSampleOptionsConfigurationContext](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Models/CodeSamples/CodeSampleOptionsConfiguration.cs)
51+
- [CodeSampleOptionsConfiguration](../../../src/DevTKSS.Uno.Samples.MvuxGallery/Models/CodeSamples/CodeSampleOptionsConfiguration.cs)
5852

5953
- Configuration
6054
- Data for Serialization

0 commit comments

Comments
 (0)