|
@ -72,12 +72,26 @@ struct SideMenuView: View { |
|
|
Divider() |
|
|
Divider() |
|
|
.padding(.trailing,40) |
|
|
.padding(.trailing,40) |
|
|
|
|
|
|
|
|
//NavigationView { |
|
|
/* |
|
|
|
|
|
HStack(alignment: .bottom) { |
|
|
|
|
|
Text("69,420") |
|
|
|
|
|
.foregroundColor(.accentColor) |
|
|
|
|
|
.font(.largeTitle) |
|
|
|
|
|
Text("SATS") |
|
|
|
|
|
.font(.caption) |
|
|
|
|
|
.padding(.bottom,6) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Divider() |
|
|
|
|
|
.padding(.trailing,40) |
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
// THERE IS A LIMIT OF 10 NAVIGATIONLINKS!!! (Consider some in other views) |
|
|
|
|
|
|
|
|
let followers = FollowersModel(damus_state: damus_state, target: damus_state.pubkey) |
|
|
let followers = FollowersModel(damus_state: damus_state, target: damus_state.pubkey) |
|
|
let profile_model = ProfileModel(pubkey: damus_state.pubkey, damus: damus_state) |
|
|
let profile_model = ProfileModel(pubkey: damus_state.pubkey, damus: damus_state) |
|
|
|
|
|
|
|
|
NavigationLink(destination: ProfileView(damus_state: damus_state, profile: profile_model, followers: followers) |
|
|
NavigationLink(destination: ProfileView(damus_state: damus_state, profile: profile_model, followers: followers)) { |
|
|
) { |
|
|
|
|
|
Label("Profile", systemImage: "person") |
|
|
Label("Profile", systemImage: "person") |
|
|
.font(.title2) |
|
|
.font(.title2) |
|
|
.foregroundColor(textColor()) |
|
|
.foregroundColor(textColor()) |
|
@ -92,11 +106,22 @@ struct SideMenuView: View { |
|
|
.font(.title2) |
|
|
.font(.title2) |
|
|
.foregroundColor(textColor()) |
|
|
.foregroundColor(textColor()) |
|
|
} |
|
|
} |
|
|
.simultaneousGesture(TapGesture().onEnded { |
|
|
.simultaneousGesture(TapGesture().onEnded { |
|
|
isSidebarVisible.toggle() |
|
|
isSidebarVisible.toggle() |
|
|
}) |
|
|
}) |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
|
NavigationLink(destination: EmptyView()) { |
|
|
|
|
|
Label("Wallet", systemImage: "bolt") |
|
|
|
|
|
.font(.title2) |
|
|
|
|
|
.foregroundColor(textColor()) |
|
|
|
|
|
} |
|
|
|
|
|
.simultaneousGesture(TapGesture().onEnded { |
|
|
|
|
|
isSidebarVisible.toggle() |
|
|
|
|
|
}) |
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
NavigationLink(destination: ConfigView(state: damus_state).environmentObject(user_settings)) { |
|
|
NavigationLink(destination: ConfigView(state: damus_state).environmentObject(user_settings)) { |
|
|
Label("App settings", systemImage: "gear") |
|
|
Label("App settings", systemImage: "gear") |
|
|
.font(.title2) |
|
|
.font(.title2) |
|
|