Swift code 4APP

import SwiftUI

struct OnboardingScreen: View { var body: some View { VStack { Image("RAYZAPP") // Make sure to add your image to the Assets catalog .resizable() .frame(width: 200, height: 200) .padding(.top, 20) Button(action: { // Navigate to ‘showQuestionnaire’ view }) { Text("Start Assessment") .font(.system(size: 20, weight: .bold)) .padding() .background(Color.blue) .foregroundColor(.white) .cornerRadius(8) } .padding(.top, 20) } .frame(maxWidth: .infinity, maxHeight: .infinity) .background(Color.white) } }

struct OnboardingScreen_Previews: PreviewProvider { static var previews: some View { OnboardingScreen() } }

Mahalo

SIGNATURE:
Clifford "RAY" Hackett www.rayis.me RESUME: www.rayis.me/resume

I founded www.adapt.org in 1980 it now has over 50 million members.
$500 of material=World’s fastest hydrofoil sailboat. http://sunrun.biz

Leave a comment