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
I have HTML like below:
<table> <colgroup> <col width="30%"/> <col width="70%"/> </colgroup> <tr> <th>AAAAAAAAAAAAAAAAAAAAAAAAAAAA</th> <td>B</td> </tr> <tr> <th>A</th> <td>BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB</td> </tr> </table>
And my styles are like this:
final Map<String, Style> htmlStyles = { 'table': Style( backgroundColor: MyColors.backGroundColor, border: Border.all(color: MyColors.surfaceOverlay), ), 'th': Style( display: Display.INLINE, alignment: Alignment.center, backgroundColor: MyColors.lightGrey, padding: const EdgeInsets.all(8), ), 'td': Style( display: Display.INLINE, backgroundColor: MyColors.backGroundColor, padding: const EdgeInsets.all(8), ), };
Then the screen would be:
But I expected the left-bottom cell (having 'A') to expand to the table's bottom line. Its height is just the same as its text-height.
'A'
Please let me know if there's any workaround or I went wrong.
The text was updated successfully, but these errors were encountered:
Let us know if this is still blocking for you on our master branch, where we fixed this via #484.
Sorry, something went wrong.
No branches or pull requests
I have HTML like below:
And my styles are like this:
Then the screen would be:
But I expected the left-bottom cell (having
'A'
) to expand to the table's bottom line. Its height is just the same as its text-height.Please let me know if there's any workaround or I went wrong.
The text was updated successfully, but these errors were encountered: