본문 바로가기
728x90

Flutter79

flutter text gradient text 를 gradient로 작성해야하는 상황이 있었다. https://stackoverflow.com/questions/51686868/gradient-text-in-flutter Gradient Text in Flutter I was wondering if it is possible to create a gradient over text Flutter. There is a gist of text gradient using Dart's ui, but it is kinda long and I was hoping to be simpler. stackoverflow.com 2023. 6. 27.
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.
GetX 관련 자료 GetX Cli https://github.com/jonataslaw/get_cli GitHub - jonataslaw/get_cli: Official Getx CLI Official Getx CLI. Contribute to jonataslaw/get_cli development by creating an account on GitHub. github.com GetX pattern https://github.com/kauemurakami/getx_pattern GitHub - kauemurakami/getx_pattern: Design pattern designed to standardize your projects with GetX on Flutter. Design pattern designed to.. 2023. 6. 14.
728x90