mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-02-24 08:24:54 +01:00
17 lines
298 B
Swift
Executable File
17 lines
298 B
Swift
Executable File
//
|
|
// 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
|
|
}
|