vitamin ios
v0.13.0
重要的
當前版本的維生素將不再發展,並且從現在開始只接受錯誤修復。更多詳細信息。


iOS和iPados應用程序的十項全能設計系統庫
網站
十項全能設計系統是一個框架,可幫助我們的生態系統設計和發展一致和質量的體驗。
對於其數字部分,它被稱為維生素。
將維生素添加到包裝的依賴項數組中:
dependencies: [
. package ( url : " https://github.com/Decathlon/vitamin-ios.git " , . exact ( " 0.13.0 " ) ) ,
// Any other dependencies...
] ,然後,將維生素添加到依賴維生素的任何靶標的依賴項陣列中。
對於SwiftUI :
. target ( name : " YourSwiftUITarget " ,
dependencies : [
. product ( name : " VitaminSwiftUI " , package : " vitamin-ios " ) ,
// Any other dependencies...
] ) ,對於UIKit :
. target ( name : " YourUIKitTarget " ,
dependencies : [
. product ( name : " Vitamin " , package : " vitamin-ios " ) ,
// Any other dependencies...
] ) ,一個完整的示例:
let package = Package (
name : " YourPackage " ,
products : [
// Your products
] ,
dependencies : [
. package ( url : " https://github.com/Decathlon/vitamin-ios.git " , . exact ( " 0.13.0 " ) ) ,
// Any other dependencies...
] ,
targets : [
// Your target
. target ( name : " YourUIKitTarget " ,
dependencies : [
. product ( name : " Vitamin " , package : " vitamin-ios " ) ,
// Any other dependencies...
] ) ,
. target ( name : " YourSwiftUITarget " ,
dependencies : [
. product ( name : " VitaminSwiftUI " , package : " vitamin-ios " ) ,
// Any other dependencies...
] ) ,
]
) # for UIKitVersion
pod 'Vitamin' , '= 0.13.0'
# for SwiftUI version
pod 'VitaminSwiftUI' , = '0.13.0' 該庫提供了兩種類型的元素:基礎和組件。
基礎是維生素設計系統的核心磚塊,組件是基於基礎的高級元素。
可用以下基礎:
| 元素 | 描述 | 文件 |
|---|---|---|
| 資產 | 設計系統中可用的圖形資產集。 | Uikit Swiftui |
| 顏色 | 設計系統的語義和基礎顏色。 | Uikit Swiftui |
| 圖示 | 在設計系統中可用的一組圖標。 | Uikit Swiftui |
| 輻射 | 適用於設計系統中任何視圖的半徑。 | Uikit Swiftui |
| 陰影 | 陰影適用於設計系統中的任何視圖。 | Uikit Swiftui |
| 排版 | 設計系統中可用的文本樣式。 | Uikit Swiftui |
可用以下組件:
| 成分 | 描述 | 文件 |
|---|---|---|
| 徽章 | 維生素設計系統的徽章。 | Uikit Swiftui |
| 按鈕 | 維生素設計系統的不同按鈕樣式。 | Uikit Swiftui |
| 進度欄 | 維生素設計系統的不同進度欄樣式。 | Uikit |
| 分段 | 從維生素設計系統分段控制。 | Uikit |
| Snackbar | 維生素設計系統的Snackbar。 | Uikit |
| 轉變 | 從維生素設計系統切換。 | Uikit |
| 標籤 | 維生素設計系統的標籤。 | Uikit |
| Textfield | 維生素設計系統的不同文本字段樣式。 | Uikit Swiftui |
感謝您參與這些維生素-IOS圖書館的貢獻者(甚至在開源之前) 。 ?
還要感謝您的混音圖標,因為Vitamix Icons是基於其開源圖標庫的官方Decathlon圖標庫(混音設計©2020)。該原始庫在許可證Apache 2.0下,已由DeCathlon修改。了解更多。
Copyright 2021 Decathlon.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.