hamburger-tech-nits

主にプログラミングのNITSな話

2023-09-01から1ヶ月間の記事一覧

FlutterのTabのラベルの色はLabelStyleで設定できない

api.flutter.dev This does not influence color of the tab labels even if TextStyle.color is non-null. Refer labelColor to color selected tab labels instead. LabelStyleにcolorを設定しても無視される。代わりにLabelColorに色を設定する。 何か理…

FlutterのBottomNavigationItemのデザインをThemeで設定するときは気をつけよう

FlutterのBottomNavigationBarに設定するBottomNavigationItemの色を変更したい。その時にウィジェットのselectedLabelStyleやunselectedLabelStyleを変更すれば値が反映されるが、Themeの設定を変えてもデフォルトのままになり設定は反映されない。というバ…