Skip to content
Snippets Groups Projects
Commit 73f52d85 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Display app version on Welcome

parent b481fa65
No related branches found
No related tags found
2 merge requests!119Example app version,!102Release 1.0.0
This commit is part of merge request !119. Comments created here will be created in the context of that merge request.
......@@ -413,6 +413,7 @@ let package = Package(
.target(
name: "WelcomeFeature",
dependencies: [
.target(name: "AppCore"),
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
.product(name: "XXMessengerClient", package: "elixxir-dapps-sdk-swift"),
],
......
import AppCore
import ComposableArchitecture
import SwiftUI
......@@ -23,7 +24,9 @@ public struct WelcomeView: View {
NavigationView {
Form {
Section {
Text("xx messenger")
AppVersionText()
} header: {
Text("App version")
}
if let failure = viewStore.failure {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment