Git Product home page Git Product logo

Comments (7)

Nikoloutsos avatar Nikoloutsos commented on August 15, 2024 1

Hello @eatwhales 👋 .
that sounds like a good idea.
I am thinking that we can build something similar to https://github.com/Daltron/NotificationBanner/blob/master/NotificationBanner/Classes/NotificationBannerQueue.swift

from toast-swift.

BastiaanJansen avatar BastiaanJansen commented on August 15, 2024

Stacking or queuing toasts are currently not supported. You should close your toast before showing another one.

PR's are of course welcome.

from toast-swift.

eatwhales avatar eatwhales commented on August 15, 2024

OK, thank you.

from toast-swift.

League2EB avatar League2EB commented on August 15, 2024

This issue has still not been implemented. I would like to ask if anyone has any ideas?
@eatwhales @BastiaanJansen

from toast-swift.

BastiaanJansen avatar BastiaanJansen commented on August 15, 2024

Hi @League2EB,

Queueing is now supported. When you are not using queues you should first hide the currently visible toast before showing the next one.

from toast-swift.

League2EB avatar League2EB commented on August 15, 2024

Hi @League2EB,

Queueing is now supported. When you are not using queues you should first hide the currently visible toast before showing the next one.

@BastiaanJansen

I don't plan to use Queueing, but I didn't see in your document how to hide the currently displayed Toast. Can you give me some hints? Thank you.

This is my method for calling Toast, but I don't know how to close the "previous" Toast that is already being displayed.

    func showToastViewWithArtsitName(name: String, actionType: FVToastActionType) {
        let time = FOInstanceConfig.sharedInstance.fetchNotificationTime(key: "minutes") / 60
        let appleToastView = AppleToastView(
            child: IBToastView(name,
                               "\(time)", actionType: actionType),
            config: ToastViewConfiguration(
                minHeight: ADH(58),
                minWidth: ADW(150),
                darkBackgroundColor: .white,
                lightBackgroundColor: .white
            )
        )

        let toast = Toast.custom(view: appleToastView)
        toast.show()
    }

from toast-swift.

BastiaanJansen avatar BastiaanJansen commented on August 15, 2024

@League2EB , you can close a toast by calling the close method like this:

let toast = Toast.custom(view: appleToastView)
toast.show()

... somewhere later in your code

toast.close()

from toast-swift.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.