Added 'Add account' to 'New ...' action sheet
This commit is contained in:
parent
d444baeda8
commit
64e49c661a
|
@ -68,7 +68,11 @@ struct ContentView: View {
|
||||||
/* Second tab: 'New' action sheet button */
|
/* Second tab: 'New' action sheet button */
|
||||||
|
|
||||||
VStack {
|
VStack {
|
||||||
NavigationLink(destination: TransferMoneyDialog(), tag: 1, selection: self.$selectedNewOption.didSet(self.selectedNewOptionChanged)) {
|
NavigationLink(destination: LazyView(AddAccountDialog()), tag: 1, selection: self.$selectedNewOption.didSet(self.selectedNewOptionChanged)) {
|
||||||
|
EmptyView()
|
||||||
|
}
|
||||||
|
|
||||||
|
NavigationLink(destination: LazyView(TransferMoneyDialog()), tag: 2, selection: self.$selectedNewOption.didSet(self.selectedNewOptionChanged)) {
|
||||||
EmptyView()
|
EmptyView()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,7 +80,8 @@ struct ContentView: View {
|
||||||
ActionSheet(
|
ActionSheet(
|
||||||
title: Text("New ..."),
|
title: Text("New ..."),
|
||||||
buttons: [
|
buttons: [
|
||||||
.default(Text("Show transfer money dialog")) { self.selectedNewOption = 1 },
|
.default(Text("Show transfer money dialog")) { self.selectedNewOption = 2 },
|
||||||
|
.default(Text("Add account")) { self.selectedNewOption = 1 },
|
||||||
.cancel { self.showPreviousSelectedTab() }
|
.cancel { self.showPreviousSelectedTab() }
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue