diff --git a/Sources/AllInApp/AllIn/Assets.xcassets/BleuePersonIcon.imageset/Contents.json b/Sources/AllInApp/AllIn/Assets.xcassets/BleuePersonIcon.imageset/Contents.json new file mode 100644 index 0000000..af28cdf --- /dev/null +++ b/Sources/AllInApp/AllIn/Assets.xcassets/BleuePersonIcon.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Group 179.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/BleuePersonIcon.imageset/Group 179.png b/Sources/AllInApp/AllIn/Assets.xcassets/BleuePersonIcon.imageset/Group 179.png new file mode 100644 index 0000000..f8c171f Binary files /dev/null and b/Sources/AllInApp/AllIn/Assets.xcassets/BleuePersonIcon.imageset/Group 179.png differ diff --git a/Sources/AllInApp/AllIn/Assets.xcassets/BleueTrophyIcon.imageset/Contents.json b/Sources/AllInApp/AllIn/Assets.xcassets/BleueTrophyIcon.imageset/Contents.json new file mode 100644 index 0000000..329d213 --- /dev/null +++ b/Sources/AllInApp/AllIn/Assets.xcassets/BleueTrophyIcon.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Group 210.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/BleueTrophyIcon.imageset/Group 210.png b/Sources/AllInApp/AllIn/Assets.xcassets/BleueTrophyIcon.imageset/Group 210.png new file mode 100644 index 0000000..97f9e72 Binary files /dev/null and b/Sources/AllInApp/AllIn/Assets.xcassets/BleueTrophyIcon.imageset/Group 210.png differ diff --git a/Sources/AllInApp/AllIn/Assets.xcassets/BlueAllCoinIcon.imageset/Contents.json b/Sources/AllInApp/AllIn/Assets.xcassets/BlueAllCoinIcon.imageset/Contents.json new file mode 100644 index 0000000..67a98bf --- /dev/null +++ b/Sources/AllInApp/AllIn/Assets.xcassets/BlueAllCoinIcon.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Group 107 (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/BlueAllCoinIcon.imageset/Group 107 (1).png b/Sources/AllInApp/AllIn/Assets.xcassets/BlueAllCoinIcon.imageset/Group 107 (1).png new file mode 100644 index 0000000..d982a56 Binary files /dev/null and b/Sources/AllInApp/AllIn/Assets.xcassets/BlueAllCoinIcon.imageset/Group 107 (1).png differ diff --git a/Sources/AllInApp/AllIn/Assets.xcassets/WinBannerBackground.colorset/Contents.json b/Sources/AllInApp/AllIn/Assets.xcassets/WinBannerBackground.colorset/Contents.json new file mode 100644 index 0000000..9e04041 --- /dev/null +++ b/Sources/AllInApp/AllIn/Assets.xcassets/WinBannerBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xE8", + "red" : "0xD1" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xE8", + "red" : "0xD1" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/AllInApp/AllIn/Components/ParticipateButton.swift b/Sources/AllInApp/AllIn/Components/ParticipateButton.swift new file mode 100644 index 0000000..5cb234e --- /dev/null +++ b/Sources/AllInApp/AllIn/Components/ParticipateButton.swift @@ -0,0 +1,18 @@ +// +// ParticipateButton.swift +// AllIn +// +// Created by Lucas Delanier on 15/01/2024. +// + +import SwiftUI + +struct ParticipateButton: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ParticipateButton() +} diff --git a/Sources/AllInApp/AllIn/Components/ResultBanner.swift b/Sources/AllInApp/AllIn/Components/ResultBanner.swift new file mode 100644 index 0000000..2b9b09c --- /dev/null +++ b/Sources/AllInApp/AllIn/Components/ResultBanner.swift @@ -0,0 +1,18 @@ +// +// ResultBanner.swift +// AllIn +// +// Created by Lucas Delanier on 15/01/2024. +// + +import SwiftUI + +struct ResultBanner: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ResultBanner() +}