Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
struct TileWithImage: View {
    var body: some View {
        Image(systemName: "heart.fill")
            .resizable(resizingMode: .tile)
            .frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height, alignment: .topLeading)
            .ignoresSafeArea()
    }
}