본문 바로가기

# 02/Flutter

[Flutter] StatelessWidget & StatefulWidget 1. StatelessWidget 변화가 필요없는 화면을 구성할 때 사용하는 위젯 클래스이며, 그렇기 때문에 build 메서드는 한 번만 호출된다.클래스가 자체적으로 다시 빌드되지 않고 자식이 변경 불가능한 경우 자식의 상태를 변경할 수 없다. 변수 쓸 때 final 써줘야됨. 안그럼 에러는 아니고 경고 뜸.// ignore: must_be_immutable이거 해줘야됨.final 써주고 생성자에 꼭 넣어줘야됨. 안그럼 컴파일 에러뜸 StatelessWidget은 상태를 갖지 않기 때문에 상태 변화를 감지하는 용도의 위젯이 아님. 따라서 변수를 초기화하고 수정하지 않도록 final 써주는 것을 권고함. 2. StatefulWidget 클래스가 자체적으로 다시 빌드 되고 자식의 상태를 변경할 수 있으며 상..
[Flutter] Animated List 1. GlobalKey 필요!!/// GlobalKey final GlobalKey _key = GlobalKey(); 2. AnimatedList 에 1번 키, 리스트 길이, itemBuilder 넣어주기!/// itemBuilder 파라미터에는 animation 있음!! body: AnimatedList( key: _key, initialItemCount: _items.length, itemBuilder: (context, index, animation) { return _buildItem(_items[index],animation,index); }, ), 3. itemBuilder 정의/// SizeTransition 으로 감싸고 해당 animation을 sizeFactor에 넣어줘야됨! Widge..
[Flutter] How can I dismiss the on screen keyboard? - 키보드 숨기기 > FocusScope.of(context).unfocus();
[Flutter] upgrade / version / downgrade flutter upgrade $> flutter upgrade flutter version check - 없어짐.. $> flutter version flutter downgrade - 없어짐.. $> flutter version [downgrade version] downgrade 하고 다시 upgrade 시.. Flutter upgrade can result in: Unable to upgrade Flutter: no origin repository configured. Run 'git remote add origin https://github.com/flutter/flutter' in /path/to/flutter/install Attempting to add that remote as sugges..
[Flutter] 템플릿 터치 영역 hitTest 보호되어 있는 글입니다.
[Flutter] 플러터 컨퍼런스 보호되어 있는 글입니다.
[Flutter] screen size double width = MediaQuery.of(context).size.width;double height = MediaQuery.of(context).size.height;
[Flutter] Provider 반영 보호되어 있는 글입니다.