Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Swift
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
Elixxir dApps SDK Swift
Commits
503cba3f
Commit
503cba3f
authored
2 years ago
by
Dariusz Rybicki
Browse files
Options
Downloads
Patches
Plain Diff
Add NetworkFollowerStatusView
parent
44bd1132
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!11
[Example App] Monitor network health
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Example/example-app/Sources/SessionFeature/NetworkFollowerStatusView.swift
+44
-0
44 additions, 0 deletions
...pp/Sources/SessionFeature/NetworkFollowerStatusView.swift
with
44 additions
and
0 deletions
Example/example-app/Sources/SessionFeature/NetworkFollowerStatusView.swift
0 → 100644
+
44
−
0
View file @
503cba3f
import
ElixxirDAppsSDK
import
SwiftUI
struct
NetworkFollowerStatusView
:
View
{
var
status
:
NetworkFollowerStatus
?
var
body
:
some
View
{
switch
status
{
case
.
stopped
:
Label
(
"Stopped"
,
systemImage
:
"stop.fill"
)
case
.
starting
:
Label
(
"Starting..."
,
systemImage
:
"play"
)
case
.
running
:
Label
(
"Running"
,
systemImage
:
"play.fill"
)
case
.
stopping
:
Label
(
"Stopping..."
,
systemImage
:
"stop"
)
case
.
unknown
(
let
code
):
Label
(
"Status
\(
code
)
"
,
systemImage
:
"questionmark"
)
case
.
none
:
Label
(
"Unknown"
,
systemImage
:
"questionmark"
)
}
}
}
#if DEBUG
struct
NetworkFollowerStatusView_Previews
:
PreviewProvider
{
static
var
previews
:
some
View
{
Group
{
NetworkFollowerStatusView
(
status
:
.
stopped
)
NetworkFollowerStatusView
(
status
:
.
starting
)
NetworkFollowerStatusView
(
status
:
.
running
)
NetworkFollowerStatusView
(
status
:
.
stopping
)
NetworkFollowerStatusView
(
status
:
.
unknown
(
code
:
-
1
))
NetworkFollowerStatusView
(
status
:
nil
)
}
.
previewLayout
(
.
sizeThatFits
)
}
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment