-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add reveal password button and use a rounded checkbox (#6268)
* Adds the reveal password icon to RoundedBorderTextField. * Use a rounded checkmark for the terms toggle style.
- Loading branch information
Showing
9 changed files
with
138 additions
and
44 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
...sets/Images.xcassets/Authentication/authentication_reveal_password.imageset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "authentication_reveal_password.svg", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
}, | ||
"properties" : { | ||
"preserves-vector-representation" : true | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...tion/authentication_reveal_password.imageset/authentication_reveal_password.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
RiotSwiftUI/Modules/Common/Util/PasswordButtonModifier.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// | ||
// Copyright 2021 New Vector Ltd | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
import SwiftUI | ||
|
||
/// Adds a reveal password button (e.g. an eye button) on the | ||
/// right side of the view. For use with `ThemableTextField`. | ||
struct PasswordButtonModifier: ViewModifier { | ||
|
||
// MARK: - Properties | ||
|
||
let text: String | ||
@Binding var isSecureTextVisible: Bool | ||
let alignment: VerticalAlignment | ||
|
||
// MARK: - Private | ||
|
||
@Environment(\.theme) private var theme: ThemeSwiftUI | ||
@ScaledMetric private var iconSize = 16 | ||
|
||
// MARK: - Public | ||
|
||
public func body(content: Content) -> some View { | ||
HStack(alignment: .center) { | ||
content | ||
|
||
if !text.isEmpty { | ||
Button { isSecureTextVisible.toggle() } label: { | ||
Image(Asset.Images.authenticationRevealPassword.name) | ||
.renderingMode(.template) | ||
.resizable() | ||
.frame(width: iconSize, height: iconSize) | ||
.foregroundColor(theme.colors.secondaryContent) | ||
} | ||
.padding(.top, alignment == .top ? 8 : 0) | ||
.padding(.bottom, alignment == .bottom ? 8 : 0) | ||
.padding(.trailing, 12) | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Authentication: Add reveal password button and use a rounded checkbox |