-
Notifications
You must be signed in to change notification settings - Fork 498
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
Design Tweaks for Threads #5356
Conversation
📱 Scan the QR code below to install the build for this PR. If you can't scan the QR code you can install the build via this link: https://i.diawi.com/UnK94h |
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.
@ismailgulek Thank you, Ismail! I've reviewed it in detail and documented all the stuff that would need to be tweaked/improved. 👍
Please find all the details on the following annotated screenshots:
Implementation Review · P0 iOS · r02
https://www.figma.com/file/T309ztx0sNyOOK6NKVLHsK/Threads?node-id=3279%3A338959
Thanks!
Snapshot (partial)
Riot/Assets/Images.xcassets/Room/Threads/threads_filter_applied.imageset/Contents.json
Show resolved
Hide resolved
if let lastMessage = viewModel.lastMessageText { | ||
let mutable = NSMutableAttributedString(attributedString: lastMessage) | ||
mutable.setAttributes([ | ||
.font: Constants.lastMessageFont |
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.
Following on from the fonts comment on the last PR, perhaps this should be
.font: Constants.lastMessageFont | |
.font: theme.fonts.footnote |
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.
Let's not do this for now, as it'll enable dynamic type for that label. We can do it when we support dynamic type app-wide.
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.
Ahhh. Think I used those for URL previews 🙈
Riot/Modules/GlobalSearch/Messages/DataSources/HomeMessagesSearchDataSource.m
Outdated
Show resolved
Hide resolved
Riot/Modules/GlobalSearch/Messages/DataSources/HomeMessagesSearchDataSource.m
Outdated
Show resolved
Hide resolved
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.
Looks good to me! Going to give it a go now 😎
Design tweaks for #5089