본문 바로가기
728x90

Flutter79

flutter widget 달력 만들기(1) 달력 위젯이 있겠지만, 뭔가 활용도를 높이려면 직접 만드는 게 편하다. 있는 위젯을 사용하면 처음 만들기는 편한데 나중에 없는 기능을 끌어다 쓰고 끌어다쓰고 하는 게 힘들다.. import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../../../constants/logger.dart'; import '../../../tools/time_tools.dart'; class CalendarWidget extends StatefulWidget { CalendarWidget({Key? key}) : super(key: key); @override State createState() => _CalendarWidgetState(.. 2022. 10. 26.
tooltip widget flutter widget 중에 이걸 사용하는 사람은 별로 없을 것이다. 나도 잘 사용하지 않았다 모바일 환경에서는 그저,, 꾹 누르면 정보가 나오는터라 중요함을 느끼지 못하고 있었다. https://www.youtube.com/watch?v=EeEfD5fI-5Q flutter web 을 하다가 알게 된 점이, web에서는 클릭하지 않고 마우스만 갖다대도 설명이 나오기 때문에 웹사용자에게는 좋은 ux를 제공해줄 수 있다는 것을 알게 되었다. long click to show information , inform tooltip으로 감싸주지 않아도 왠만한 버튼이나, widget은 tooltip을 내장하고 있다. 2022. 10. 26.
getX obx bottom tabbar error I found error when use (In appbar)bottom : tabbar, it occur not change obx body objects. (Sometimes tabindex change not work) I move tabbar to body, it solved. I think it is need to fix by flutter team. 2022. 9. 27.
In flutter, Making 2 page with 1 GetXController If you make the App like instagram. sometimes you would like to 2 page with 1 GetXController. For example, A profilePage -> follower List page -> B profilePage in this time A profilePage and B profilePage are made in same page (Profile page) and same controller . the solution is here. https://stackoverflow.com/questions/69018689/flutter-getx-how-navigate-to-different-views-with-same-controller-c.. 2022. 9. 6.
728x90