Results 52 comments of Ivan Kuznetsov

+1 for this feature

@jrschumacher what about this one https://github.com/symfony/Validator?

I have the same issue ![screenshot at oct 10 16-54-15](https://user-images.githubusercontent.com/1456389/31390105-abdd78ae-addb-11e7-9f3f-0bc860b83aab.png)

Quick and dirty solution for me was to put TableCalendar into SizedBox and give it a width that is divisible by 7 without a remainder.

Example: ```dart LayoutBuilder(builder: (context, constraints) { return SizedBox( width: constraints.maxWidth ~/ 7 * 7, child: TableCalendar(), ); } ```

I made a fork to use in my project but I'm not sure if the solution is elegant enough to be merged into this library. Let me know what you...