본문 바로가기
728x90

개발456

flutter로 카카오 링크시 주의사항 kakao link https://pub.dev/packages/kakao_flutter_sdk kakao_flutter_sdk | Flutter Package A flutter plugin for Kakao API, which supports Kakao login, KakaoTalk Share, User API, KakaoTalk API, KakaoStory API and Navi API. pub.dev https://developers.kakao.com/docs/latest/ko/getting-started/sdk-flutter Kakao Developers 카카오 API를 활용하여 다양한 어플리케이션을 개발해보세요. 카카오 로그인, 메시지 보내기, 친구 API, 인공지능 API 등을 제공합니다. developers.k.. 2023. 7. 1.
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.
728x90