0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Flutter】table_calendarウィジェットのヘッダーをカスタマイズする

Posted at

table_calendarウィジェットのヘッダーをカスタマイズする方法について
あんまり情報が出てこなかったのでメモしておきます。

headerTitleBuilderを設定するだけで簡単に出来ました。

デフォルトUI:

カスタマイズ後UI例:

calendar_example.dart
TableCalendar(
    ...
    calendarBuilders: CalendarBuilders(
        headerTitleBuilder: (context, day) {
            // ここでカスタムヘッダータイトルを構築
            return Row(
              mainAxisAlignment: MainAxisAlignment.spaceBetween,
              children: [
                Text(
                  '${day.year}${day.month}月',
                  style: TextStyle(
                    fontSize: 17.0,
                  ),
                ),
                const SizedBox(width: 8.0),
                Icon(Icons.list),
              ],
            );
          },
        ),
)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?