PopupView icon indicating copy to clipboard operation
PopupView copied to clipboard

Toasts and popups library written with SwiftUI

Results 39 PopupView issues
Sort by recently updated
recently updated
newest added

I used the library and noticed that the dismiss Callback was not called after the popup was hidden

I want to react differently when popup is dismissed because of a tap or because of a drag. Here is the changes I've made to accomplish this 👇 Is there...

When I upgrade my XCode version to 14 this error is occured. (tested with ios16 simulator) My ExytePopupView package version is 1.1.6. Why is this error happened? ![Screen Shot 2022-09-22...

hello i am using your toast but some problem with me can you help me? iam register toast in view A, when i use 'navigationLink' to view B, B use...

I've been trying to show a toast in my custom View (which I'm wrapping in a UIViewController and then in a UITabBarController). When the tab bar is hidden it works...

Am facing popup height issue in case of TextView used in View which we have passed. The popup covers whole screen height instead of jus adjusted to the height based...

First I have a RoomCommonAlertView. struct RoomCommonAlertView: View { @Binding var closeView:Bool var body: some View { VStack(spacing: 30){ Text("title").foregroundColor(RGB(51, 51, 51)).font(Font.system(size: 16,weight: .semibold)).multilineTextAlignment(.center).padding(.leading,10).padding(.trailing,10).padding(.top,15) HStack(spacing: 17){ Text("sure").foregroundColor(RGB(179, 179, 179)).font(Font.system(size: 14,weight:...

Hi Exyte, I'm getting the following error in `Source/Utils.swift` `Missing return in getter expected to return 'CGSize'` on `static var screenSize: CGSize`.

Hello, I have implemented an action sheet visually dismisses, however, the invisible layer seems to remain active, rendering the UI unresponsive. Below is the relevant code. ``` ForEach(goals["daily"]!, id: \.id)...