Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xx messenger iOS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
xx messenger iOS
Merge requests
!83
Fix hud not showing up when deleting account
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix hud not showing up when deleting account
fix/hud-upon-delete
into
dev
Overview
1
Commits
2
Pipelines
0
Changes
4
All threads resolved!
Hide all comments
Merged
Bruno Muniz
requested to merge
fix/hud-upon-delete
into
dev
2 years ago
Overview
1
Commits
2
Pipelines
0
Changes
4
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
dev
version 2
577ae921
2 years ago
version 1
f4b5e631
2 years ago
dev (base)
and
latest version
latest version
6903efc5
2 commits,
2 years ago
version 2
577ae921
2 commits,
2 years ago
version 1
f4b5e631
1 commit,
2 years ago
4 files
+
86
−
59
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Sources/InputField/InputField.swift
+
7
−
1
Options
@@ -153,7 +153,13 @@ public final class InputField: UIView {
}
public
func
update
(
placeholder
:
String
)
{
field
.
placeholder
=
placeholder
field
.
attributedPlaceholder
=
NSAttributedString
(
string
:
placeholder
,
attributes
:
[
.
font
:
Fonts
.
Mulish
.
semiBold
.
font
(
size
:
14.0
),
.
foregroundColor
:
Asset
.
neutralDisabled
.
color
]
)
}
public
func
update
(
status
:
ValidationStatus
)
{
Loading