This file contains hidden or 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
// | |
// LottieView.swift | |
// InstaSwap | |
// | |
// Created by Halil Yuce on 15.11.2020. | |
// | |
import SwiftUI | |
import Lottie |
This file contains hidden or 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
// | |
// LoginView.swift | |
// InstaSwap | |
// | |
// Created by Halil Yuce on 15.11.2020. | |
// | |
import SwiftUI | |
struct LoginView: View { |
This file contains hidden or 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 Platform: Codable { | |
var id: Int | |
var name: String? | |
var logo: String? | |
var color: String? | |
var created_at: String? | |
var updated_at: String? | |
} |