[iOS] Fix Clipping Add User Button (#1441)
* Add what was removed * tvos --------- Co-authored-by: chickdan <=> Co-authored-by: Ethan Pippin <ethanpippin2343@gmail.com>
This commit is contained in:
parent
35b72b3a5a
commit
d2c5ac9985
|
@ -63,6 +63,8 @@ extension SelectUserView {
|
||||||
),
|
),
|
||||||
pipeline: .Swiftfin.local
|
pipeline: .Swiftfin.local
|
||||||
)
|
)
|
||||||
|
.aspectRatio(1, contentMode: .fill)
|
||||||
|
.clipShape(.circle)
|
||||||
.overlay {
|
.overlay {
|
||||||
if isEditing {
|
if isEditing {
|
||||||
ZStack(alignment: .bottom) {
|
ZStack(alignment: .bottom) {
|
||||||
|
|
|
@ -67,6 +67,8 @@ extension SelectUserView {
|
||||||
pipeline: .Swiftfin.local
|
pipeline: .Swiftfin.local
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
.aspectRatio(1, contentMode: .fill)
|
||||||
|
.clipShape(.circle)
|
||||||
.overlay {
|
.overlay {
|
||||||
if isEditing {
|
if isEditing {
|
||||||
ZStack(alignment: .bottomTrailing) {
|
ZStack(alignment: .bottomTrailing) {
|
||||||
|
|
Loading…
Reference in New Issue