Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- FutureBuilder
- Flutter 예제
- Flutter 강좌
- CrossAxisAlignment
- Load Image
- AppBar
- listview
- Flutter Example
- Hello World
- Cached Image
- MainAxisAlignment
- ListView.builder
- HTTP
- node.js
- Flutter 앱 배포
- Column Widget
- Snackbar
- Row Widget
- Flutter Tutorial
- Row
- WillPopScope
- flutter
- InkWell
- Image.network
- ListTile
- navigator
- 반석천
- Networking
- Scaffold
- sqlite
Archives
- Today
- Total
목록assert (1)
꿈꾸는 시스템 디자이너
Flutter 강좌 시즌2 목록 : https://here4you.tistory.com/149 이번 강좌에서는 가변 인자를 사용하는 방법에 대해서 알아본다. 기존의 함수 호출방법은 다음과 같았다. import 'package:flutter/material.dart'; void main() { String my_name = 'Park'; int my_age = 39; String my_location = "Daejeon"; Class_A class_A = Class_A(my_name, my_age); class_A.printInfo(); } class Class_A { String name; int age; Class_A(String name, int age) { this.name = name; this...
Development/Flutter
2019. 7. 25. 15:00