Favourites list too short
Response from developer
Thank you for sharing your feedback. We'd be happy to get this looked into for you, please contact us: https://www.thameslinkrailway.com/help-and-support/contact-us - Thameslink Digital Team
Yes or maybe later model
Journey planning needs an update too because it’s basically focused on selling you a ticket not planning a journey for a ticket you already have or might buy, meaning you keep having to add tickets to baskets to see details.
Response from developer
Thank you for sharing your feedback. We'd be happy to get this looked into for you, please contact us: https://www.thameslinkrailway.com/help-and-support/contact-us - Thameslink Digital Team
Existing selected rail card not applied
Response from developer
Thank you for your feedback. We’re sorry you’re experiencing issues. If you’d like help or can share more details, please contact us: https://www.thameslinkrailway.com/help-and-support/contact-us – Thameslink Digital Team
Calling Points
Response from developer
Thanks for your feedback! Show calling points is still available in the latest version. For further help, please contact us: https://www.thameslinkrailway.com/help-and-support/contact-us – Thameslink Digital Team
Add to apple wallet stopped working
Needs work
Response from developer
Thank you for your feedback. Please contact the team at https://www.thameslinkrailway.com/help-and-support/contact-us. so we can gather more details about the issue you’re experiencing. - Thameslink Digital Team
Will not activate key ticket - could get you unfairly fined
Response from developer
Sorry you’ve had trouble activating your ticket this shouldn’t happen. We’d like to investigate and fix this quickly. Please contact https://www.thameslinkrailway.com/help-and-support/contact-us with your device model, OS version, app version, a screenshot/screen recording, and the last 4 digits of your smartcard number. - Thameslink Digital Team
Terrible
Train service,would not even give 1 star
Will not activate key ticket - could get you unfairly fined
Good app - just a bit more info please
Excellent for booking Thameslink train tickets
Just make the screen brighter when showing QR code tickets
To add code to your app to put the iPhone on full brightness when displaying a QR code, you can use the following Swift code snippet. This code will set the screen brightness to the maximum value when the QR code is displayed and revert it back to the original brightness when the QR code is no longer visible.
import UIKit
class ViewController: UIViewController {
var originalBrightness: CGFloat = 0.0
override func viewDidLoad() {
super.viewDidLoad()
originalBrightness = UIScreen.main.brightness
}
func showQRCode() {
// Set the screen brightness to full
UIScreen.main.brightness = 1.0
// Display the QR code
// Your code to display the QR code goes here
}
func hideQRCode() {
// Revert the screen brightness to the original value
UIScreen.main.brightness = originalBrightness
// Hide the QR code
// Your code to hide the QR code goes here
}
// Example usage
@IBAction func showQRCodeButtonTapped(_ sender: UIButton) {
showQRCode()
}
@IBAction func hideQRCodeButtonTapped(_ sender: UIButton) {
hideQRCode()
}
}
