Added extensions detailForegroundColor() and styleAsDetail()
This commit is contained in:
parent
0ece2b1bf5
commit
293ab59eb6
|
@ -32,6 +32,17 @@ extension View {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func detailForegroundColor() -> some View {
|
||||||
|
return self
|
||||||
|
.foregroundColor(Color.gray)
|
||||||
|
}
|
||||||
|
|
||||||
|
func styleAsDetail() -> some View {
|
||||||
|
return self
|
||||||
|
.font(.callout)
|
||||||
|
.detailForegroundColor()
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ struct AddAccountDialog: View {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Text("Select your bank ...")
|
Text("Select your bank ...")
|
||||||
.foregroundColor(.gray)
|
.detailForegroundColor()
|
||||||
.frame(height: 50)
|
.frame(height: 50)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,7 @@ struct AddAccountDialog: View {
|
||||||
.navigationBarHidden(false)
|
.navigationBarHidden(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func isRequiredDataEntered() -> Bool {
|
func isRequiredDataEntered() -> Bool {
|
||||||
return bank != nil
|
return bank != nil
|
||||||
&& customerId.isEmpty == false
|
&& customerId.isEmpty == false
|
||||||
|
|
|
@ -26,7 +26,7 @@ struct BankInfoListItem: View {
|
||||||
|
|
||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
.foregroundColor(.gray)
|
.styleAsDetail()
|
||||||
.padding(.top, 6.0)
|
.padding(.top, 6.0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue