-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[🐴] New chat dialog refresh #4071
Conversation
estrattonbailey
commented
May 17, 2024
•
edited
Loading
edited
- Android border radius on dialog
Your Render PR Server URL is https://social-app-pr-4071.onrender.com. Follow its progress at https://dashboard.render.com/web/srv-cp3arrsf7o1s73eni4ug. |
|
892c014
to
7239313
Compare
borderTopLeftRadius: 40, | ||
borderTopRightRadius: 40, |
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.
Prevents overflow in the corners, needs to match Inner
src/components/Dialog/index.web.tsx
Outdated
FlatListProps<any> & {label: string} & { webInnerStyle?: StyleProp<ViewStyle> } | ||
>(function InnerFlatList({label, style, webInnerStyle, ...props}, ref) { |
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.
Need to override some styles on web bc of this composition
@@ -20,6 +20,7 @@ export const RQKEY = (prefix: string) => [RQKEY_ROOT, prefix] | |||
export function useActorAutocompleteQuery( | |||
prefix: string, | |||
maintainData?: boolean, | |||
limit?: number, |
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.
Really shouldn't use positional props but didn't want to make edits in all the other files
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.
yea all good, felt the same way when i added the maintainData
onScrollBeginDrag={() => Keyboard.dismiss()} | ||
/> | ||
) | ||
} |
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.
holy shit almost 500LOC what a screen!
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.
amazing work on this! works great. made a small adjustment to the dismiss keyboard prop so the dismiss runs sync.
# Conflicts: # src/screens/Messages/List/index.tsx