728x90 개발/Flutter CodeRecipe2 LabeledCheckbox -> CheckTileList CheckTileList 를 사용할 때마다 문제점이 생기는데, 이렇게 사용하면 문제 될 일이 없어보인다. https://api.flutter-io.cn/flutter/material/CheckboxListTile-class.html CheckboxListTile class - material library - Dart API A ListTile with a Checkbox. In other words, a checkbox with a label. The entire list tile is interactive: tapping anywhere in the tile toggles the checkbox. The value, onChanged, activeColor and checkColor propertie.. 2023. 6. 23. Custom TabBar(1) - Text TabBar class CustomTabBar extends StatefulWidget { const CustomTabBar({required this.tabString, required this.onChanged, Key? key}) : super(key: key); final List tabString; final ValueChanged onChanged; @override State createState() => _CustomTabBarState(); } class _CustomTabBarState extends State { int tabIndex = 0; @override Widget build(BuildContext context) { return Row( mainAxisAlignment: MainAxis.. 2023. 6. 23. 이전 1 다음 728x90