Giter VIP home page Giter VIP logo

Comments (4)

onl1ner avatar onl1ner commented on May 20, 2024

Hello, @vchaubey-ontic!

I did not get your question, can you please clarify using some examples/use cases reflecting your idea?

from tabbar.

vikaschaubey57 avatar vikaschaubey57 commented on May 20, 2024

Ok, let me try.
My implementation is something like this -

       TabBar(selection: $selection, visibility: $visibility) {
            Home()
                .tabItem(for: TabItems.first)
            
            Search()
                .tabItem(for: TabItems.second)
            
            AddView()
                .tabItem(for: TabItems.third)
            
            Notifications() {
            .tabItem(for: TabItems.fourth)
            
            More()
                .tabItem(for: TabItems.fifth)
       }

Right now every tab have their own view, right?, what I want to achieve is, when I click 4th tab i.e More

  1. Most Recent / Previous selected tab should be highlighted instead of more.
  2. Instead opening a new View More() , it should present on Most Recent / Previous selected tab like a popup and on dismiss popup @State of Most Recent / Previous selected should persist so that it always looks a like a view presented on instead opening a new tab.

Ex: I have to present some Menu on 4th tab and previous selected view should be visible.

from tabbar.

onl1ner avatar onl1ner commented on May 20, 2024

@vikaschaubey57, got it. Unfortunately, there is no way to implement that using the toolkit provided by this library, but you can workaround that by wrapping More view into some entity that will automatically on onAppear call present your view as a sheet.

Here is quick and dirty way to achieve this:

// Wrapper.swift

struct Wrapper<Content: View>: View {
    private let content: Content
    
    @State private var isPresented: Bool = false
    
    init(content: Content) {
        self.content = content
    }
    
    var body: some View {
        Color.clear
            .sheet(isPresented: self.isPresented, content: { self.content })
            .onAppear { self.isPresented = true }
    }
}

// TabBar.swift

TabBar(selection: $selection, visibility: $visibility) {
    Home()
        .tabItem(for: TabItems.first)
            
    Search()
        .tabItem(for: TabItems.second)
            
    AddView()
        .tabItem(for: TabItems.third)
            
    Notifications() {
        .tabItem(for: TabItems.fourth)
            
    Wrapper(content: More())
        .tabItem(for: TabItems.fifth)
}

Hope it helps :)

from tabbar.

onl1ner avatar onl1ner commented on May 20, 2024

Closing due to inactivity, feel free to reopen if the issue still exists

from tabbar.

Related Issues (16)

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.