You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For lightweight development flows, `LiveLocalizationCore` also includes providers such as `PseudoLocalizationProvider`, `MockLocalizationProvider`, and `PassthroughLocalizationProvider`.
40
41
42
+
## UI Layer
43
+
44
+
`LiveLocalizationUI` adds simple view wrappers on top of the core localizer layer.
45
+
46
+
SwiftUI:
47
+
48
+
```swift
49
+
importSwiftUI
50
+
importLiveLocalizationUI
51
+
52
+
LiveLocalizedText("Continue")
53
+
```
54
+
55
+
UIKit:
56
+
57
+
```swift
58
+
importUIKit
59
+
importLiveLocalizationUI
60
+
61
+
let label =LiveLocalizedLabel()
62
+
label.setLocalizedText("Continue")
63
+
```
64
+
41
65
## Apple Translation Preview
42
66
43
67
If you want a debug flow that checks whether required language packs are available and guides preparation before showing the UI:
0 commit comments