flutter_custom_calendar icon indicating copy to clipboard operation
flutter_custom_calendar copied to clipboard

Flutter的一个日历控件

Results 48 flutter_custom_calendar issues
Sort by recently updated
recently updated
newest added

月末最后几天无法显示的bug有人修复一下吗?

add null safty support, flutter sdk upgraded to 2.15.1

周视图和月视图进行切换的时候月视图延迟太严重了,怎么处理呢?

![image](https://user-images.githubusercontent.com/26682866/81884245-efa8be80-95c9-11ea-97f1-4a550d6175b8.png)

完善了一下setState前的判断。防止出现异常.

默认的GridView带有上边界导致显示样式出错 ![image-20210223110609902](https://user-images.githubusercontent.com/38401723/108798424-c1302900-75c8-11eb-9eec-d6aaa9a455b8.png) 修复 week_view.dart目录下 ``` Widget build(BuildContext context) { ... return new GridView.builder( //*添加padding: EdgeInsets.zero,去除上边界 padding: EdgeInsets.zero, ... ); } ``` ![image-20210223111238666](https://user-images.githubusercontent.com/38401723/108798438-c68d7380-75c8-11eb-9d80-4cc316908eeb.png)