전체 글39 [Flutter] 잡다한 노트 https://d2.naver.com/helloworld/3384599 iOS/Android 협업을 위해 3가지 정도의 방법이 있다. 1. Naming Convention 맞추기 2. 스터디 / 세미나 같이 하기 3. 라이브러리 개발 개발 과제에 특화된 스팩이 있다. React Native, Webview를 비교하였을 때, Flutter는 Bridge를 거치지 않고, 바로 Canvans에 UI를 렌더링하기 때문에 기대 이상의 성능을 보여준다. https://hackernoon.com/whats-revolutionary-about-flutter-946915b09514 _RandomWordsState(); } class _RandomWordsState extends State { @override Widge.. 2022. 8. 3. [Flutter] Provider 전역 상태 관리 및 위젯들간에 상태를 공유하는 방법 A wrapper around the InheritedWidget that makes it easier to use and manage. State management technique를 제공함 (Managing a piece of data around the app) https://www.geeksforgeeks.org/flutter-provider-package/ Flutter에는 2가지 위젯이 있음 (Stateful / Stateless) Stateful은 State를 가지고 있는 widget임, 만약 State가 바뀌면 화면에 표시되는 UI를 변경함 만약 다른 Widget에서도 해당 State가 필요하다면 어떻게 되는가? 가능한 방법은 아래의 2.. 2022. 8. 3. Flutter app with Metamask & Web3 https://medium.com/unitechie/flutter-ui-nft-collection-application-f0ec8fd586c https://github.com/Kavit900/nft_collection_app/tree/main/assets 1. Metamask 지갑을 Rinkeby 테스트 네트워크로 변경 2. flutter_web3 설치 / provider 변경 Q) What is notifyListeners()? Q) flutter run -d web-server? Q) No MediaQuery widget ancestor found error? https://stackoverflow.com/questions/68635405/no-mediaquery-widget-ancestor-foun.. 2022. 8. 3. [Widget] FutureBuilder란? Flutter는 서버에서 데이터를 모두 받아오기 전에 화면을 완성할 수 있는 비동기 통신을 사용함. FutureBuilder는 데이터를 다 받기 전에 그릴 수 있는 부분을 먼저 그리기 위해 사용됨 (FutureBuilder를 사용하지 못한다면, setState()를 통해 데이터를 다 받고 변경을 해줘야 함) FutureBuilder 구성 요소 1. Future 2. Builder 참고 : https://eory96study.tistory.com/21?category=821706 2022. 8. 3. 이전 1 2 3 4 ··· 10 다음