SwiftUI Animation Issue (After Text assign)

I use the title and description computedProperties in the PopupType enum in PopupView. While the animation is offset, why do the Texts come later?

MainView:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>VStack(spacing: 30) {
Spacer()
Button {
authManager.popupType = .warning(title: "Are you sure ?", desc: "Do you wanna sign out ?")
} label: {
Text("Sign Out")
}
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.padding(.bottom, 16)
.overlay {
PopupView(
firstButtonTitle: Constant.okButtonTitle,
actionButtonTitle: Constant.goBackBtnTitle,
status: $authManager.popupType)
}
</code>
<code>VStack(spacing: 30) { Spacer() Button { authManager.popupType = .warning(title: "Are you sure ?", desc: "Do you wanna sign out ?") } label: { Text("Sign Out") } } .frame(maxWidth: .infinity, maxHeight: .infinity) .padding(.bottom, 16) .overlay { PopupView( firstButtonTitle: Constant.okButtonTitle, actionButtonTitle: Constant.goBackBtnTitle, status: $authManager.popupType) } </code>
VStack(spacing: 30) {
                            Spacer()
                            Button {
                                authManager.popupType = .warning(title: "Are you sure ?", desc: "Do you wanna sign out ?")
                            } label: {
                                Text("Sign Out")
                            }
                        }
                        .frame(maxWidth: .infinity, maxHeight: .infinity)
                        .padding(.bottom, 16)
                        .overlay {
                            PopupView(
                                firstButtonTitle: Constant.okButtonTitle,
                                actionButtonTitle: Constant.goBackBtnTitle,
                                status: $authManager.popupType)
                        }

PopupType:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>enum PopupType: Equatable {
case none
case warning(title: String, desc: String)
case success(String)
case error(String)
var icon: String {
switch self {
case .none:
return "circle"
case .warning:
return "exclamationmark.circle"
case .success:
return "checkmark.circle"
case .error:
return "xmark.circle"
}
}
var title: String {
switch self {
case .none:
return ""
case .warning(let title, _):
return title
case .success:
return "Başarılı"
case .error:
return "Hata"
}
}
var description: String {
switch self {
case .none:
return ""
case .warning(_, let desc):
return desc
case .success(let desc):
return desc
case .error(let desc):
return desc
}
}
var iconColor: Color {
switch self {
case .none:
return .clear
case .warning:
return Color(uiColor: .orange)
case .success:
return Color(uiColor: .green)
case .error:
return Color(uiColor: .red)
}
}
}
</code>
<code>enum PopupType: Equatable { case none case warning(title: String, desc: String) case success(String) case error(String) var icon: String { switch self { case .none: return "circle" case .warning: return "exclamationmark.circle" case .success: return "checkmark.circle" case .error: return "xmark.circle" } } var title: String { switch self { case .none: return "" case .warning(let title, _): return title case .success: return "Başarılı" case .error: return "Hata" } } var description: String { switch self { case .none: return "" case .warning(_, let desc): return desc case .success(let desc): return desc case .error(let desc): return desc } } var iconColor: Color { switch self { case .none: return .clear case .warning: return Color(uiColor: .orange) case .success: return Color(uiColor: .green) case .error: return Color(uiColor: .red) } } } </code>
enum PopupType: Equatable {
    case none
    case warning(title: String, desc: String)
    case success(String)
    case error(String)
    
    var icon: String {
        switch self {
        case .none:
            return "circle"
        case .warning:
            return "exclamationmark.circle"
        case .success:
            return "checkmark.circle"
        case .error:
            return "xmark.circle"
        }
    }
    
    var title: String {
        switch self {
        case .none:
            return ""
        case .warning(let title, _):
            return title
        case .success:
            return "Başarılı"
        case .error:
            return "Hata"
        }
    }
    
    var description: String {
        switch self {
        case .none:
            return ""
        case .warning(_, let desc):
            return desc
        case .success(let desc):
            return desc
        case .error(let desc):
            return desc
        }
    }
    
    var iconColor: Color {
        switch self {
        case .none:
            return .clear
        case .warning:
            return Color(uiColor: .orange)
        case .success:
            return Color(uiColor: .green)
        case .error:
            return Color(uiColor: .red)
        }
    }
}

PopupView:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>struct PopupView: View {
enum ActionType {
case dismiss
case custom
}
var showActionButton: Bool = true
var firstButtonTitle: String = ""
var actionButtonTitle: String = ""
var actionType: ActionType = .custom
@Binding var status: PopupType
var onAction: (() -> ())? = { }
@Environment(.dismiss) var dismiss
var body: some View {
VStack {
Spacer()
VStack(spacing: 16) {
Image(systemName: status.icon)
.resizable()
.frame(width: 50, height: 50)
.fontWeight(.thin)
.colorMultiply(status.iconColor)
Text(status.title)
.bold()
Text(status.description)
.font(.system(size: 16, weight: .light))
.multilineTextAlignment(.center)
}
.padding(16)
.background(.ultraThinMaterial)
.cornerRadius(8.0)
.padding(16)
}
.background(Color.white.opacity(0.001))
.offset(y: status == .none ? UIScreen.main.bounds.height : .zero)
.animation(.easeInOut, value: status)
}
}
</code>
<code>struct PopupView: View { enum ActionType { case dismiss case custom } var showActionButton: Bool = true var firstButtonTitle: String = "" var actionButtonTitle: String = "" var actionType: ActionType = .custom @Binding var status: PopupType var onAction: (() -> ())? = { } @Environment(.dismiss) var dismiss var body: some View { VStack { Spacer() VStack(spacing: 16) { Image(systemName: status.icon) .resizable() .frame(width: 50, height: 50) .fontWeight(.thin) .colorMultiply(status.iconColor) Text(status.title) .bold() Text(status.description) .font(.system(size: 16, weight: .light)) .multilineTextAlignment(.center) } .padding(16) .background(.ultraThinMaterial) .cornerRadius(8.0) .padding(16) } .background(Color.white.opacity(0.001)) .offset(y: status == .none ? UIScreen.main.bounds.height : .zero) .animation(.easeInOut, value: status) } } </code>
struct PopupView: View {
    enum ActionType {
        case dismiss
        case custom
    }
    
    var showActionButton: Bool = true
    var firstButtonTitle: String = ""
    var actionButtonTitle: String = ""
    var actionType: ActionType = .custom
    @Binding var status: PopupType
    var onAction: (() -> ())? = { }
    @Environment(.dismiss) var dismiss
    var body: some View {
        VStack {
            Spacer()
            VStack(spacing: 16) {
                Image(systemName: status.icon)
                    .resizable()
                    .frame(width: 50, height: 50)
                    .fontWeight(.thin)
                    .colorMultiply(status.iconColor)
                
                Text(status.title)
                    .bold()
                
                Text(status.description)
                    .font(.system(size: 16, weight: .light))
                    .multilineTextAlignment(.center)
            }
            .padding(16)
            .background(.ultraThinMaterial)
            .cornerRadius(8.0)
            .padding(16)

        }
        .background(Color.white.opacity(0.001))
        .offset(y: status == .none ? UIScreen.main.bounds.height : .zero)
        .animation(.easeInOut, value: status)
    }
}

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật