본문 바로가기
728x90

widget10

rotate 하고 사이즈 남기기 로테이션 하는 방법은 많은데, 로테이션 하고나서 사이즈를 다시 확인해주는 것은 찾기 어려운 것 같다 .아래의 블로그를 통해서 찾았음!!ㅎㅎ https://www.fluttercampus.com/guide/204/how-to-rotate-widget-in-flutter/ How to Rotate Widget in Flutter In this example, we are going to show you how to rotate widgets with different methods in Flutter such as using Transform.rotate(), RotationTransition(), RotatedBox(). www.fluttercampus.com 내가 했던 방법은 RotatedBox( qua.. 2023. 7. 3.
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.
flutter에서 reward 줄 때 사용할만한 위젯 리스트 https://fluttergems.dev/games-rewards/ Top Flutter In-app Games & Rewards packages | Spin-a-wheel, Slot Machine, Scratch Card | Flutter Gems List of Top Flutter In-app Games & Rewards packages | Spin-a-wheel, Slot Machine, Scratch Card. Flutter Gems is a curated list of Dart & Flutter packages that are categorized based on functionality. Flutter Gems is also a visual alternative to pub.dev flutt.. 2023. 4. 21.
728x90