Added TouchID/FaceID to sign in
This commit is contained in:
parent
5c4d4f8059
commit
7d6643112d
12 changed files with 239 additions and 52 deletions
|
|
@ -13,7 +13,7 @@ struct RecentlyResolved: View {
|
|||
var body: some View {
|
||||
ScrollView {
|
||||
VStack(alignment: .leading) {
|
||||
Text("\u{2022} Implemented an easy way to dismiss the keyboard in the main view of Calculator (it only took 2 1/2 months)")
|
||||
Text("\u{2022} Implemented an easy way to dismiss the keyboard in the main view of Calculator (it only took 2 1/2 months)\n\u{2022} Opening the contacts tab no longer causes the app to crash (RC 2)")
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
|
|
@ -24,8 +24,11 @@ struct RecentlyResolved: View {
|
|||
struct HighPriority: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
VStack(alignment: .leading) {
|
||||
Text("Tapping on the Contacts tab after entering correct login details causes the app to crash")
|
||||
VStack {
|
||||
Image(systemName: "checkmark.shield.fill")
|
||||
.resizable()
|
||||
.aspectRatio(contentMode: .fit)
|
||||
.frame(width: 70)
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
|
|
@ -36,9 +39,11 @@ struct HighPriority: View {
|
|||
struct MediumPriority: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
VStack(alignment: .leading) {
|
||||
Text("Wow. Such Empty.")
|
||||
.italic()
|
||||
VStack {
|
||||
Image(systemName: "checkmark.shield.fill")
|
||||
.resizable()
|
||||
.aspectRatio(contentMode: .fit)
|
||||
.frame(width: 70)
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue