Skip to content

Commit 855411e

Browse files
committed
Update docs
1 parent 82f36e0 commit 855411e

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

Diff for: Sources/Pulse/Pulse.docc/Articles/NextSteps.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Learn how to configure Pulse to best suit your app needs.
44

5+
## Console
6+
7+
Pulse is highly customizable and you can tweak it to best match your style and your backend. To learn more, see [PulseUI: Overview](https://kean-docs.github.io/pulseui/documentation/pulseui/).
8+
59
## Logger
610

711
### Configure Store

Diff for: Sources/PulseUI/PulseUI.docc/PulseUI.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ A set of components that you can integrate into your app to view the logs.
44

55
## Overview
66

7+
### SwiftUI
8+
79
The easiest way to integrate PulseUI is by using ``ConsoleView``.
810

911
```swift
@@ -24,7 +26,7 @@ NavigationLink(destination: ConsoleView()) {
2426

2527
> tip: If you use Pulse to log only network requests, and not text messages, use `ConsoleView(mode: .network)` to show a view specialized to only display network requests.
2628
27-
## UIKit
29+
### UIKit
2830

2931
To present the console from `UIKit`, use `UIHostingController`:
3032

@@ -45,7 +47,13 @@ nav.navigationBar.prefersLargeTitles = true
4547
present(nav, animated: true)
4648
```
4749

48-
## Custom Views
50+
## Customization
51+
52+
### Settings
53+
54+
Pulse is highly customizable and provides a massive number of settings in ``UserSettings``, including the options for customizing the look of the cells in the list, and more.
55+
56+
### Custom Views
4957

5058
PulseUI gives you complete access to the underlying data and its model. You can easily create custom views into your log data by using affordances provided by SwiftUI:
5159

0 commit comments

Comments
 (0)