전체 글 516

[ FLUTTER ] 최초 1회만 Build하기

장점: 최초 실행시 1회만 Build를 하므로 탭바를 이동하고 다시 돌아오더라도 화면을 다시 뿌려주는 번거로움을 덜어주며 페이지를 다시 불러올때 로딩속도가 향상된다. class GoodsFilterTab extends StatefulWidget { @override _GoodsFilterTabState createState() => _GoodsFilterTabState(); } class _GoodsFilterTabState extends State with AutomaticKeepAliveClientMixin{ @override bool get wantKeepAlive => true; @override Widget build(BuildContext context) { super.build(context..

App/Flutter 거북 2021.07.14

[ FLUTTER ] Hot Key

필수키 r / R / h / c / i / p / o / v / P Flutter run key commands. 리프레시 r Hot reload. 🔥🔥🔥 Hard 리프레시 R Hot restart. 헬프메세지 표시 h Repeat this help message. Run 종료 d Detach (terminate "flutter run" but leave application running). 콘솔클리어 c Clear the screen 앱 종료 및 Run 종료 q Quit (terminate the application on the device). 스크린샷 s Save a screenshot to flutter.png. 다크모드 b Toggle the platform brightness setting ..

App/Flutter HEON.D 2021.07.08