spezionboarding

Spezi Onboarding module to inform a user or retrieve consent for a study participation

https://github.com/stanfordspezi/spezionboarding

Science Score: 49.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (9.2%) to scientific vocabulary

Keywords

consent ios onboarding spezi stanford swift swiftui welcome xcode
Last synced: 6 months ago · JSON representation

Repository

Spezi Onboarding module to inform a user or retrieve consent for a study participation

Basic Info
Statistics
  • Stars: 15
  • Watchers: 9
  • Forks: 8
  • Open Issues: 6
  • Releases: 36
Topics
consent ios onboarding spezi stanford swift swiftui welcome xcode
Created almost 3 years ago · Last pushed 6 months ago
Metadata Files
Readme License Citation

README.md

Spezi Onboarding

Build and Test codecov DOI

Provides UI components for Onboarding.

Overview

The SpeziOnboarding module provides user interface components to onboard a user to an iOS application.

Screenshot displaying the onboarding view Screenshot displaying the onboarding view Screenshot displaying the sequential onboarding view Screenshot displaying the sequential onboarding view Screenshot displaying the onboarding view Screenshot displaying the onboarding view
OnboardingView SequentialOnboardingView OnboardingConsentView

Setup

Add Spezi Onboarding as a Dependency

You need to add the Spezi Onboarding Swift package to your app in Xcode or Swift package.

Examples

Onboarding View

The OnboardingView allows you to separate information into areas on a screen, each with a title, description, and icon.

```swift import SpeziOnboarding import SwiftUI

struct OnboardingViewExample: View { var body: some View { OnboardingView( title: "Welcome", subtitle: "This is an example onboarding view", areas: [ .init( icon: Image(systemName: "tortoise.fill"), title: "Tortoise", description: "A Tortoise!" ), .init( icon: { Image(systemName: "lizard.fill") .foregroundColor(.green) }, title: "Lizard", description: "A Lizard!" ), .init( icon: { Circle().fill(.orange) }, title: "Circle", description: "A Circle!" ) ], actionText: "Learn More", action: { // Action to perform when the user taps the action button. } ) } } ```

Sequential Onboarding View

The SequentialOnboardingView allows you to display information step-by-step with each additional area appearing when the user taps the Continue button.

```swift import SpeziOnboarding import SwiftUI

struct SequentialOnboardingViewExample: View { var body: some View { SequentialOnboardingView( title: "Things to know", subtitle: "And you should pay close attention ...", steps: [ .init( title: "A thing to know", description: "This is a first thing that you should know; read carefully!" ), .init( title: "Second thing to know", description: "This is a second thing that you should know; read carefully!" ), .init( title: "Third thing to know", description: "This is a third thing that you should know; read carefully!" ) ], actionText: "Continue" ) { // Action to perform when the user has viewed all the steps } } } ```

The Spezi Template Application

The Spezi Template Application provides a great starting point and example using the SpeziOnboarding module.

Contributing

Contributions to this project are welcome. Please make sure to read the contribution guidelines and the contributor covenant code of conduct first.

License

This project is licensed under the MIT License. See Licenses for more information.

Spezi Footer Spezi Footer

Owner

  • Name: Stanford Spezi
  • Login: StanfordSpezi
  • Kind: organization

GitHub Events

Total
  • Create event: 23
  • Release event: 8
  • Issues event: 12
  • Watch event: 2
  • Delete event: 12
  • Issue comment event: 50
  • Push event: 119
  • Pull request review event: 116
  • Pull request review comment event: 131
  • Pull request event: 22
  • Fork event: 2
Last Year
  • Create event: 23
  • Release event: 8
  • Issues event: 12
  • Watch event: 2
  • Delete event: 12
  • Issue comment event: 50
  • Push event: 119
  • Pull request review event: 116
  • Pull request review comment event: 131
  • Pull request event: 22
  • Fork event: 2

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 27
  • Total pull requests: 58
  • Average time to close issues: 4 months
  • Average time to close pull requests: 27 days
  • Total issue authors: 6
  • Total pull request authors: 10
  • Average comments per issue: 1.07
  • Average comments per pull request: 3.36
  • Merged pull requests: 50
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 7
  • Pull requests: 22
  • Average time to close issues: 2 days
  • Average time to close pull requests: 28 days
  • Issue authors: 4
  • Pull request authors: 5
  • Average comments per issue: 0.29
  • Average comments per pull request: 2.14
  • Merged pull requests: 17
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • PSchmiedmayer (9)
  • philippzagar (6)
  • vishnuravi (5)
  • Supereg (3)
  • LeonNissen (1)
  • Dlemex (1)
Pull Request Authors
  • Supereg (17)
  • lukaskollmer (15)
  • philippzagar (12)
  • PSchmiedmayer (6)
  • akanshyabhat (6)
  • vishnuravi (5)
  • RealLast (4)
  • felixschlegel (4)
  • pauljohanneskraft (2)
  • AdritRao (1)
Top Labels
Issue Labels
enhancement (18) good first issue (9) help wanted (6) bug (5) documentation (2) test (1)
Pull Request Labels
enhancement (42) bug (3) documentation (2) good first issue (1)

Packages

  • Total packages: 1
  • Total downloads: unknown
  • Total dependent packages: 0
  • Total dependent repositories: 1
  • Total versions: 36
swiftpackageindex.com: github.com/StanfordSpezi/SpeziOnboarding

Spezi Onboarding module to inform a user or retrieve consent for a study participation

  • Versions: 36
  • Dependent Packages: 0
  • Dependent Repositories: 1
Rankings
Dependent repos count: 14.3%
Dependent packages count: 16.7%
Average: 40.2%
Forks count: 60.3%
Stargazers count: 69.6%
Last synced: 6 months ago