swift โฉ custom โฉ snippets โฉ previews
๐ MyView
import SwiftUI /// MyView struct MyView: View { var body: some View { VStack { Text("Hello") } } }
๐ Previews
// -------------- Previews -------------- struct MyView_Previews: PreviewProvider { static var previews: some View { MyView() } }
Slider
Last updated 2 months ago
Was this helpful?