|
@@ -16,10 +16,10 @@ struct DashboardData: Identifiable, Codable, Hashable {
|
|
|
var url: URL
|
|
|
}
|
|
|
|
|
|
-let dataPreview: [DashboardData] = [
|
|
|
- .init(id: 0, image: "circle_fill", title: "-", subTitle: "-", url: URL(string: "https://nextcloud.com/")!),
|
|
|
- .init(id: 0, image: "circle_fill", title: "-", subTitle: "-", url: URL(string: "https://nextcloud.com/")!),
|
|
|
- .init(id: 0, image: "circle_fill", title: "-", subTitle: "-", url: URL(string: "https://nextcloud.com/")!),
|
|
|
- .init(id: 0, image: "circle_fill", title: "-", subTitle: "-", url: URL(string: "https://nextcloud.com/")!),
|
|
|
- .init(id: 0, image: "circle_fill", title: "-", subTitle: "-", url: URL(string: "https://nextcloud.com/")!)
|
|
|
+let dashboardDatasTest: [DashboardData] = [
|
|
|
+ .init(id: 0, image: "nextcloud", title: "title 1", subTitle: "subTitle 1", url: URL(string: "https://nextcloud.com/")!),
|
|
|
+ .init(id: 1, image: "nextcloud", title: "title 2", subTitle: "subTitle 2", url: URL(string: "https://nextcloud.com/")!),
|
|
|
+ .init(id: 2, image: "nextcloud", title: "title 3", subTitle: "subTitle 3", url: URL(string: "https://nextcloud.com/")!),
|
|
|
+ .init(id: 3, image: "nextcloud", title: "title 4", subTitle: "subTitle 4", url: URL(string: "https://nextcloud.com/")!),
|
|
|
+ .init(id: 4, image: "nextcloud", title: "title 5", subTitle: "subTitle 5", url: URL(string: "https://nextcloud.com/")!)
|
|
|
]
|