-
Notifications
You must be signed in to change notification settings - Fork 372
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
Position location marker on the map correctly ios 993 #7478
Position location marker on the map correctly ios 993 #7478
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 5 of 5 files at r1, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @buggmagnet)
ios/MullvadVPN/View controllers/Tunnel/TunnelViewController.swift
line 227 at r1 (raw file):
} private func addContentView() {
This func should probably be called addConnectionView
and the spinner be added in separate function.
e569007
to
7f4cb81
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: 4 of 5 files reviewed, 1 unresolved discussion (waiting on @rablador)
ios/MullvadVPN/View controllers/Tunnel/TunnelViewController.swift
line 227 at r1 (raw file):
Previously, rablador (Jon Petersson) wrote…
This func should probably be called
addConnectionView
and the spinner be added in separate function.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 4 of 5 files at r1, 1 of 1 files at r3, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @rablador)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r2, 1 of 1 files at r3, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved
🚨 End to end tests failed. Please check the failed workflow run. |
This PR deletes the SwiftUI spinner view and retvrns to tradition by re-introducing
SpinnerActivityIndicatorView
intoTunnelViewController
.Additionally, the map and spinner will be centered higher on the map so it doesn't get obscured by the newly introduced
ConnectionView
written in SwiftUI.The spinner position varies slightly based on the available screen estate, typically, it will be positioned higher on devices with less than 700 pixels in height.
This change is