This commit is contained in:
Ivan Vorobei
2019-06-06 22:36:07 +03:00
parent 6d351cf167
commit 27a7f9fae6
129 changed files with 2634 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
//
// TabBarModel.swift
// SwiftUI_Jike
//
// Created by alexyang on 2019/6/6.
// Copyright © 2019 alexyang. All rights reserved.
//
import SwiftUI
struct TabBarItem: Hashable, Codable, Identifiable {
var id: Int
var title: String
var image: String
var imageSelect: String
}