Skip to content

Commit

Permalink
Updated UIFont to SwiftUI Font (vinhnx#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowfax90 committed Jul 19, 2023
1 parent c049c17 commit 1c8926c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Clendar/Components/MultilineTextField.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fileprivate struct UITextViewWrapper: UIViewRepresentable {
textField.delegate = context.coordinator

textField.isEditable = true
textField.font = UIFont.preferredFont(forTextStyle: .body)
textField.font = Font(UIFont.preferredFont(forTextStyle: .body))
textField.isSelectable = true
textField.isUserInteractionEnabled = true
textField.isScrollEnabled = false
Expand Down

0 comments on commit 1c8926c

Please sign in to comment.