View SwiftUIChatDemoApp.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import StreamChat | |
import StreamChatSwiftUI | |
@main | |
struct SwiftUIChatDemoApp: App { | |
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate | |
let nordeaDarkRed = Color( colorLiteral(red: 0.9058823529, green: | |
0.01568627451, blue: 0.01568627451, alpha: 1)) |
View SwiftUIChatDemoApp.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import StreamChat | |
import StreamChatSwiftUI | |
@main | |
struct SwiftUIChatDemoApp: App { | |
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate | |
var body: some Scene { |
View SwiftUIChatDemoApp.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import StreamChat | |
import StreamChatSwiftUI | |
@main | |
struct SwiftUIChatDemoApp: App { | |
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate | |
var body: some Scene { |
View fontWeightAnimation.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// AnimateFontWeightView.swift | |
// 100DaysOfSwiftUI | |
// | |
// Created by amos.gyamfi@getstream.io on 11.6.2022. | |
// | |
import SwiftUI | |
struct AnimateFontWeightView: View { |
View SwiftChartsGettingStarted.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// BasicSwiftChart.swift | |
// SwiftCharts | |
// | |
// Created by Amos | |
// | |
import Charts | |
import SwiftUI | |
struct BasicSwiftChart: View { |
View ThemingAppDelegate.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import StreamChat | |
import StreamChatSwiftUI | |
class AppDelegate: NSObject, UIApplicationDelegate { | |
var streamChat: StreamChat? | |
var chatClient: ChatClient = { | |
var config = ChatClientConfig(apiKey: .init("8br4watad788")) |
View ThemingBasicsApp.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import StreamChat | |
import StreamChatSwiftUI | |
@main | |
struct SwiftUIChatDemoApp: App { | |
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate | |
let nordeaDarkRed = Color(#colorLiteral(red: 0.9058823529, green: 0.01568627451, blue: 0.01568627451, alpha: 1)) | |
var body: some Scene { |
View MessagesView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// MessagesView.swift | |
// iMessageClone | |
// | |
// | |
import SwiftUI | |
struct MessagesView: View { | |
View HeaderView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// HeaderView.swift | |
// iMessageClone | |
// | |
// | |
import SwiftUI | |
struct HeaderView: View { | |
NewerOlder