-
Notifications
You must be signed in to change notification settings - Fork 57
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
feat: 🎸 add new control ContactItem #307
Conversation
case email | ||
case message | ||
case videoCall | ||
case detail |
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.
Missing Docs Violation: public declarations should be documented. (missing_docs)
case email | ||
case message | ||
case videoCall |
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.
Missing Docs Violation: public declarations should be documented. (missing_docs)
case email | ||
case message |
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.
Missing Docs Violation: public declarations should be documented. (missing_docs)
@@ -2,13 +2,25 @@ import SwiftUI | |||
|
|||
/// :nodoc: | |||
public enum ActivityItemType { | |||
case phone |
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.
Missing Docs Violation: public declarations should be documented. (missing_docs)
@shengxu7 please fix build errors |
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.
@shengxu7 Can you also update the table in the readme to indicate that ContactItem is completed?
Updated. |
descriptionText | ||
|
||
Spacer(minLength: 24) | ||
}.frame(width: mainViewSize.width * (1 - self.splitPercent!)) |
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.
Force Unwrapping Violation: Force unwrapping should be avoided. (force_unwrapping)
} | ||
.frame(width: mainViewSize.width * self.splitPercent!) |
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.
Force Unwrapping Violation: Force unwrapping should be avoided. (force_unwrapping)
No description provided.