Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix small screen devices issues #83

Merged
merged 15 commits into from
Mar 27, 2023
Prev Previous commit
Next Next commit
Minor addition
  • Loading branch information
cedricbahirwe committed Mar 27, 2023
commit af3f4255334fafd98e2593fd96fca9a0f71cd08c
14 changes: 7 additions & 7 deletions Dialer/Dialer/Views/Main/SendingView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,16 @@ struct SendingView: View {
.lineLimit(1)
.minimumScaleFactor(0.5)

Spacer()
Spacer(minLength: 1)

Button("Report a problem", role: .destructive) {
showReportSheet.toggle()
}
.textCase(nil)
.font(.caption)
// Button("Report a problem", role: .destructive) {
// showReportSheet.toggle()
// }
// .textCase(nil)
// .font(.caption)
}
} footer: {
Text("If you encounter any issues with the suggested merchant codes, please do not hesitate to report them to us.")
Text("If you encounter any issues with the suggested merchant codes, please do not hesitate to report them to us. Go to ***Settings > Contact Us***")
}
.listRowBackground(rowBackground)
}
Expand Down