Created
November 20, 2021 17:53
-
-
Save pedantix/622e62eb04e8de665e91cd066761a689 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
struct StoreListCell: View { | |
var body: some View { | |
Text("A Store List Cell") | |
} | |
} | |
struct StoreListCell_Previews: PreviewProvider { | |
static var previews: some View { | |
Group { | |
StoreListCell().preferredColorScheme(.light) | |
StoreListCell().preferredColorScheme(.dark) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment