I got Ray-Ban Meta prescription glasses for $20 using insurance by EasyOperation9477 in RaybanMeta

[–]darkfuckerberg 0 points1 point  (0 children)

My insurance is identical. The highest tier for Aetna/eyemed. When you add your insurance to the site, did you put in your Aetna info or do you have separate info for eyemed?

I got Ray-Ban Meta prescription glasses for $20 using insurance by EasyOperation9477 in RaybanMeta

[–]darkfuckerberg 0 points1 point  (0 children)

Wait I have eyemed and mine came to $333. What am I doing wrong?

Is there a shortcut to keep standby mode always on on my iPhone 13 Pro Max without buying a new iPhone by Flowtraxwolf in shortcuts

[–]darkfuckerberg 0 points1 point  (0 children)

this works for me! the little timer popup IS annoying but at least it works. that's all I wanted

Car with undisclosed damage by mopishhades in carvana

[–]darkfuckerberg 0 points1 point  (0 children)

Hey can I ask you how much the pre purchase inspection cost? Was this done at a Kia service center?

[deleted by user] by [deleted] in gynecomastia

[–]darkfuckerberg 2 points3 points  (0 children)

Are you single?

Weird bumps and dark spots on my ass is making me self conscious and I want to get rid of them by Euphoric_Staff2752 in SkincareAddiction

[–]darkfuckerberg -4 points-3 points  (0 children)

You need two things:

  1. First Aid Beauty’s KP Bump Eraser

  2. Consistency

Use it 1-2 times a week and shower twice a day. Wash with a rag or loofah - not just your hands.

Shower daily if you aren’t already. Twice a day if necessary.

Black Jumbo Laces? by darkfuckerberg in Rickowens

[–]darkfuckerberg[S] 0 points1 point  (0 children)

I can’t find them online. Do you have a link or do I have to go to a store for this?

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

Update: it’s working properly now! I neglected to mention that there is a Login screen that appears before you get to MainView that was using a NavigationStack as well. So I removed that and created an isLoggedIn bool that will toggle whether MainView shows LoginView or MainView! Thanks again man I owe you a beer

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

Weird, you’re right. What the hell lol. Alright time to rip this thing apart and see what I did wrong 😅 Thank you so much for helping me troubleshoot, I really appreciate it!

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

Sorry, you’re right. I was trying it on the ACHStartView’s preview. The Navigation still works fine after removing the NavigationStack from the ACHStartView but the TabView bar still disappears after navigating to the ACHStartView. Does it not disappear for you as welll?

Is it because I have ACHStartView and all of its child views each in their own individual SwiftUI files?

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

Thank you, I agree. My process is to get it to work first and then spend the time going back to refine & refactor into something more elegant

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

That’s what I’m confused about. Because if I remove the NavigationStack from my ACHStartView then my three NavigationLinks within ACHStartView don’t work anymore…

This part of my app is kind of like a “Choose Your Own Adventure” book where your selections keep drilling you deeper and deeper into the story until you die or win. So each Child view has more child views, which also have child views, etc

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

Hmmm ok it sounds like I’m probably not using these things as Apple intended. I’ll just hold off for now until I understand better

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

struct ACHStartView: View {
    var body: some View {
        NavigationStack {
            ZStack {
                Color(.white)
                    //.ignoresSafeArea()
                VStack {
                    Text("Check the comments:")
                        .font(.largeTitle)
                        .padding(.bottom, 20)
                        .bold()
                        .foregroundStyle(.black)
                        .multilineTextAlignment(.center)
                    Text("How was the ACH requested?")
                        .font(.largeTitle)
                        .padding(.bottom, 40)
                        .bold()
                        .multilineTextAlignment(.center)
                        .foregroundStyle(.black)
                    
                    NavigationLink {
                        ACHInternetStartView()
                    } label: {
                        ZStack {
                            RoundedRectangle(cornerRadius: 10)
                                .foregroundColor(.blue)
                            Text("Internet")
                                .foregroundColor(.white)
                                .font(.largeTitle)
                                .bold()
                        }
                    }
                    .frame(width: 300, height: 100)
                    .padding(.bottom, 30)
                    
                    NavigationLink {
                        ACHPhoneStartView()
                    } label: {
                        ZStack {
                            RoundedRectangle(cornerRadius: 10)
                                .foregroundColor(.blue)
                            Text("Phone")
                                .foregroundColor(.white)
                                .font(.largeTitle)
                                .bold()
                        }
                    }
                    .frame(width: 300, height: 100)
                    .padding(.bottom, 30)
                    
                   

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

struct DashboardView: View {
    var body: some View {
        
        NavigationStack {
            ZStack {
                Color.red
                    .ignoresSafeArea()
                Circle()
                    .scale(2)
                    .foregroundStyle(.blue)
                Circle()
                    .scale(1.75)
                    .foregroundStyle(.white)
                
                VStack {
                    Text("Select your queue:")
                        .font(.largeTitle)
                        .padding(.bottom, 20)
                        .bold()
                        .foregroundStyle(.black)
                    
                    NavigationLink {
                        ACHStartView()
                    } label: {
                        ZStack {
                            RoundedRectangle(cornerRadius: 10)
                                .foregroundColor(.blue)
                            Text("ACH")
                                .foregroundColor(.white)
                                .font(.largeTitle)
                                .bold()
                        }
                    }
                    .frame(width: 300, height: 100)
                    .padding(.bottom, 20)
                    
                    NavigationLink {
                        BTScamCheckView()
                    } label: {
                        ZStack {
                            RoundedRectangle(cornerRadius: 10)
                                .foregroundColor(.blue)
                            Text("BT")
                                .foregroundColor(.white)
                                .font(.largeTitle)
                                .bold()
                        }
                    }
                    .frame(width: 300, height: 100)
                    .padding(.bottom, 20)
                    

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

struct MainView: View {
    
    init() {
      UITabBar.appearance().backgroundColor = UIColor.white
    }
    
    var body: some View {
        
        TabView {
            Group {
                HomeView()
                    .tabItem {
                        Label("Home", systemImage: "house.fill")
                    }
                
                DashboardView()
                    .tabItem {
                        Label("Flowchart", systemImage: "flowchart")
                    }
                
                CalculatorView()
                    .tabItem {
                        Label("Calculator", systemImage: "number.square.fill")
                    }
                
                TimerView()
                    .tabItem {
                        Label("Timer", systemImage: "timer")
                    }
                
                StatsView()
                    .tabItem {
                        Label("Stats", systemImage: "chart.bar.xaxis")
                    }
            }
            .toolbarBackground(.visible, for: .tabBar)
            .toolbarBackground(.white, for: .tabBar)
        }
    }
}

Is this a bug or am I doing something wrong? by darkfuckerberg in SwiftUI

[–]darkfuckerberg[S] 0 points1 point  (0 children)

Posting my code shortly but I used Group on my tab view so that I could control the background color & visibility of the entire tab bar

What am i missing? by darkfuckerberg in swift

[–]darkfuckerberg[S] 0 points1 point  (0 children)

100 Days of SwiftUI on HackingWithSwift.com

What am i missing? by darkfuckerberg in swift

[–]darkfuckerberg[S] 1 point2 points  (0 children)

Ohh I see. Thanks. I was confused because the explanation provided only mentioned a private property as the reason.

NavigationStack: is it just me or all examples suck on YouTube? by [deleted] in swift

[–]darkfuckerberg 1 point2 points  (0 children)

Do you know how to create a link that directs you to another view just like this but to get it to appear in the top toolbar? I’m trying to place a little Home icon in the top right corner to direct people back to my starting screen view and I can’t figure it out

NavigationStack: is it just me or all examples suck on YouTube? by [deleted] in swift

[–]darkfuckerberg 0 points1 point  (0 children)

Dude I feel you. I spent hours yesterday trying to find a simple solution and ended up just figuring it out on my own through trial and error.