반응형 플러터47 [flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) [flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) 예를 들어, 아래와 같은 코드에서는 Column 안에 여러 위젯과 함께 ListView가 구현되어있다. (For example, In the code below, ListView is implemented with several widgets in the column.) @override Widget build(BuildContext context) { // TODO: implement build return new Scaffold( appBar: new AppBar( title: new .. 2021. 11. 6. [flutter] how to change background color of flutter app. (앱의 배경 색상 변경 방법) [flutter] how to change background color of flutter app. (앱의 배경 색상 변경 방법) 앱의 가장 바깥이 되는 위젯을 Scaffold로 구축하고 아래와 같이 backgroundColor를 지정해주면 된다. [English](Build the most external widget of the app into Scaffold You can designate the background color as follows.) import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(Bui.. 2021. 11. 5. [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. 이전 1 ··· 8 9 10 11 12 다음 반응형