Giter Site home page Giter Site logo

Comments (6)

0xifarouk avatar 0xifarouk commented on May 19, 2024 5

This is actually how AlertToast works. By receiving the Y position in the current view.
Do not put '.toast' on Button, implement it on ViewBuilder, like Group.

'.sheet' can be on a button but it's not the same case for AlertToast.

This doesn't solve the problem, I have put the toast above the VStack in a Sheet, but the position still incorrect as @Rminsh showed.

from alerttoast.

elai950 avatar elai950 commented on May 19, 2024 1

I've released a new version where you can manually offset the height until I'll find a better solution.

.toast(isPresenting: ...., offsetY: CGFloat)

Closing issue.

from alerttoast.

elai950 avatar elai950 commented on May 19, 2024

The .toast modifier should always be at the top of all view builders.
Add a view builder (for example VStack) then implement the .toast on the vstack after the .sheet modifier.
Try this:

var body: some View {
        VStack{
        Button("Show Detail") {
            showingDetail.toggle()
        }
        }
.sheet(isPresented: $showingDetail) {
            NextView()
        }
//Implement `.toast` here
    }

from alerttoast.

Rminsh avatar Rminsh commented on May 19, 2024

The .toast modifier should always be at the top of all view builders.
Add a view builder (for example VStack) then implement the .toast on the vstack after the .sheet modifier.
Try this:

var body: some View {
        VStack{
        Button("Show Detail") {
            showingDetail.toggle()
        }
        }
.sheet(isPresented: $showingDetail) {
            NextView()
        }
//Implement `.toast` here
    }

If I implement toast modifier in the Parent View, the toast will show up behind my sheet like this:
Screen Shot 2021-03-08 at 4 00 15 PM

import SwiftUI
import AlertToast

struct ContentView: View {
    
    @State var showToast = false
    @State private var showingDetail = false
    
    var body: some View {
        Button("Show Detail") {
            showingDetail.toggle()
        }
        .sheet(isPresented: $showingDetail) {
            childView
        }
        .toast(isPresenting: $showToast, duration: 3, tapToDismiss: true, alert: {
            AlertToast(
                displayMode: .hud,
                type: .systemImage("checkmark.circle.fill", .green),
                title: "Test",
                subTitle: "Some message")
            
        })
    }
    
    var childView: some View {
        ScrollView {
            Button("Show Detail") {
                showToast.toggle()
            }
            .padding()
        }
    }
}

So the correct way is to implement toast in the Child view and the Y Position should be based on the current view

from alerttoast.

elai950 avatar elai950 commented on May 19, 2024

This is actually how AlertToast works. By receiving the Y position in the current view.
Do not put '.toast' on Button, implement it on ViewBuilder, like Group.

'.sheet' can be on a button but it's not the same case for AlertToast.

from alerttoast.

iKK001 avatar iKK001 commented on May 19, 2024

...same here, this does not solve the problem (iOS 14.6)

It seems that .hud has a problem.

As Rminsh wrote "...to implement toast in the Child view..." works but unfortunately not for .hud.

What is the solution for .sheet and the need for a .hud type alert ??

from alerttoast.

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.