Flutter カレンダーでセルの枠線の色を変えるサンプル

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
cellBorderColor: Colors.green
セルの枠線の色を変えるには、「cellBorderColor引数」を使います。

使用例

@override
 Widget build(BuildContext context) {
   return Scaffold(
       body: SfCalendar(
     		view: CalendarView.month,
     		cellBorderColor: Colors.red,
   	)
           );
 }

 

IT

Posted by arkgame