Ivan Kuznetsov
Ivan Kuznetsov
+1 for this feature
@jrschumacher what about this one https://github.com/symfony/Validator?
I have the same issue 
+1 for this feature
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...