-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
fix(animated-fab): label styling (web) #4567
Conversation
@BogiKay is this able to be merged in soon? I'd like to use this component on our web app |
I'll take care of it. I'll do my best to have it merged by the end of next week. |
@@ -428,3 +435,36 @@ export const getExtendedFabStyle = ({ | |||
|
|||
return isV3 ? v3Extended : extended; | |||
}; | |||
|
|||
const getCanvasContext = () => { |
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.
I'm not expert on web, won't impact the performance creating everytime a canvas? will work cache it? something like
let cachedCanvasContext: CanvasRenderingContext2D | null = null;
const getCanvasContext = () => {
if (!cachedCanvasContext) {
const canvas = document.createElement('canvas');
cachedCanvasContext = canvas.getContext('2d');
}
return cachedCanvasContext;
};
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.
This looks good to me! Is it able to be merged? It's one of a couple of issues holding up a new web launch for my team. |
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.
LGTM
Motivation
Currently, whole styling related logic in AnimatedFAB component relies on
onTextLayout
, which is mobile specific, so FAB's label is not styled well in web.Related issue
#4478
Test plan