-
-
Notifications
You must be signed in to change notification settings - Fork 918
Add support for the style tag #655
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
Add support for the style tag #655
Conversation
As for the tag occupying visible space, maybe render it explicitly as empty Container()? |
This comment has been minimized.
This comment has been minimized.
…document when using head > style
…into feature/style-tag-support � Conflicts: � lib/style.dart
Fixed the empty space issue with the recent commit - for some reason the |
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.
Approved but could you change all naming to camelCase?
@erickok done. |
…b6Resources#796 This was a regression introduced in Sub6Resources#655
Fixes #593 and sort of addresses #207 (we still don't support all the styles given in the example in that issue).
Test HTML
Should we add a parameter to theDone viaHtml
widget to allow users to pass the external CSS as a string separate from the HTML data? Don't know if that would be useful but it wouldn't be difficult to implement at all.Style.fromCSS
function.Also for some reason addingFixed<head>
to the document adds a space at the top of the doc, I don't know if the changes made in #646 will help that but I don't think so.