docs: update code block formatting in reports and restructure guides

Updated code block formatting in `Ping-Service_Impl_01-2026.md` for consistency by switching from `kotlin` to `text`. Refactored `README.md` to rename `02_Onboarding` to `02_Guides` for improved clarity. Adjusted UI code example in `UIUXDesigner.md` with added descriptive comments.
This commit is contained in:
2026-01-23 13:39:07 +01:00
parent aba5b5c7a0
commit 84337697ce
3 changed files with 10 additions and 8 deletions
+3 -1
View File
@@ -92,7 +92,9 @@ Column(Modifier.fillMaxSize()) {
SearchRow(Modifier.focusRequester(focusSearch))
LazyColumn(
verticalArrangement = Arrangement.spacedBy(4.dp) // Wenig Abstand
) { ... }
) {
// ... Items ...
}
FooterActions(Modifier.height(32.dp))
}
```