본문 바로가기
728x90

분류 전체보기574

사업가는 문제를 만드는 사람이다. 학생은 문제를 푸는 사람이다. 이론을 배우고 배운 이론에서 시험이 출제 된다. 시험은 배운 이론을 벗어나지 않으며 이론은 교과과정을 벗어나지 않는다. 대학생은 문제를 풀어보고 해당 솔루션을 다양한 곳에 적용해보는 사람이다. 직장인은 문제를 푸는 사람이지만, 문제가 생겼을 때, 이론을 누군가 가르쳐주는 것이 아니고 문제를 해결하기 위한 이론을 찾아서 발견한다. 큰 회사일 경우 선배가 가르쳐줄 수도 있다. 그러나 배우지 않은 문제가 발생할 수 있으며 그런 해결책을 알 지 못하는 상황에서 문제를 잘 해결해 냈을 때 우리는 센스 있는 직장인이라고 말한다. 사업가는 문제를 만드는 사람이다. 정확하게 말하면 문제를 찾아내는 사람이라고 할 수 있겠다. 우리가 당면한 문제, 풀어야할 문제, 해결해야할 사항들을 대의를 .. 2023. 6. 28.
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