We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In native figma code convertor, they show name of typography and color. For example
color: var(--black, #000000); /* Material/label/large */ font-size: 18px; font-weight: 500; line-height: 24px;
Therefore, it would be good if the name comes out as an �comments in the flutter code, like
Text( 'Example', // Material/label/large style: TextStyle( color: Color(0xFF000000), // black fontSize: 18, fontWeight: FontWeight.w500, height: 24, ), )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In native figma code convertor, they show name of typography and color. For example
Therefore, it would be good if the name comes out as an �comments in the flutter code, like
The text was updated successfully, but these errors were encountered: