반응형 Solution45 [flutter] String을 Uri로 변환하는법. string to uri [flutter] String을 Uri로 변환하는법. string to uri var uri = Uri.parse('https://example.org:8080/foo/bar#frag'); Uri.parse를 이용한다. 2021. 11. 3. [flutter] Copying a list (deep copy) (리스트를 복사하기(깊은 복사)) [flutter] Copying a list (deep copy) (리스트를 복사하기(깊은 복사)) List.from을 이용해서 복사하면 깊은 복사가 이루어진다. [English](Copying using List.from makes a deep copy.) this.reviews = List.from(reviews); https://stackoverflow.com/questions/63091889/flutter-firebase-get-array-from-firestore-and-assign-it-to-a-list flutter firebase get array from Firestore and assign it to a list I have a collection in Firestore. It has .. 2021. 11. 1. [flutter] How to adjust the height of the Grid View widget(그리드 뷰 위젯 높이 조절하는 방법) [flutter]How to adjust the height of the Grid View widget(그리드 뷰 위젯 높이 조절하는 방법)GridView.count의 childAspectRatio를 설정하면 된다. (Set the childAspectRatio of GridView.count.)Widget build(BuildContext context) { var size = MediaQuery.of(context).size; final double itemHeight = (size.height - kToolbarHeight - 24) / 2; final double itemWidth = size.width / 2; return new Scaffold( appBar: n.. 2021. 10. 31. [flutter] How to keep the contents in the tab even if the tab is moved - Inde [flutter플러터] How to keep the contents in the tab even if the tab is moved - IndexedStack (Tab 이동하더라도 Tab 내의 내용은 유지되도록 하는 방법 - IndexedStack) 기존에는 아래와 같이 탭바를 사용하였지만 탭을 이동하고 돌아오니 기존의 내용이 초기화되는 문제가 있었다. (Previously, the tab bar was used as follows, but when the tab was moved and returned, there was a problem that the existing content was initialized.) return Scaffold( body: _children[_currentIndex],.. 2021. 10. 29. 이전 1 ··· 8 9 10 11 12 다음 반응형