diff --git a/Sources/AllInApp/AllIn/Assets.xcassets/CloseiconRounded.imageset/Contents.json b/Sources/AllInApp/AllIn/Assets.xcassets/CloseiconRounded.imageset/Contents.json new file mode 100644 index 0000000..4250f63 --- /dev/null +++ b/Sources/AllInApp/AllIn/Assets.xcassets/CloseiconRounded.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Exclude (1).png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/AllInApp/AllIn/Assets.xcassets/CloseiconRounded.imageset/Exclude (1).png b/Sources/AllInApp/AllIn/Assets.xcassets/CloseiconRounded.imageset/Exclude (1).png new file mode 100644 index 0000000..7103253 Binary files /dev/null and b/Sources/AllInApp/AllIn/Assets.xcassets/CloseiconRounded.imageset/Exclude (1).png differ diff --git a/Sources/AllInApp/AllIn/Assets.xcassets/Image.imageset/Contents.json b/Sources/AllInApp/AllIn/Assets.xcassets/Image.imageset/Contents.json new file mode 100644 index 0000000..a19a549 --- /dev/null +++ b/Sources/AllInApp/AllIn/Assets.xcassets/Image.imageset/Contents.json @@ -0,0 +1,20 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/AllInApp/AllIn/Views/DetailsView.swift b/Sources/AllInApp/AllIn/Views/DetailsView.swift new file mode 100644 index 0000000..599844c --- /dev/null +++ b/Sources/AllInApp/AllIn/Views/DetailsView.swift @@ -0,0 +1,18 @@ +// +// DetailsView.swift +// AllIn +// +// Created by Lucas Delanier on 12/01/2024. +// + +import SwiftUI + +struct DetailsView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + DetailsView() +}