일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- dart 언어
- Houdini
- 깃
- gitlab
- 플러터
- jupyter lab
- c# 윈폼
- github
- 포인터
- Flutter
- 도커
- 다트 언어
- C# delegate
- jupyter
- 구조체
- docker
- c# winform
- 유니티
- c# 추상 클래스
- vim
- HTML
- git
- Python
- Algorithm
- C++
- c언어
- C언어 포인터
- Data Structure
- c#
- Unity
Archives
- Today
- Total
목록플러터 샘플 앱 (1)
nomad-programmer

프로젝트를 새로 작성하면 샘플 앱이 표시된다. 프로젝트 창의 lib 폴더에서 main.dart 파일을 클릭하면 전체 코드를 볼 수 있다. import 'package:flutter/material.dart'; // 앱 시작 부분 void main() { runApp(MyApp()); } // 시작 클래스. 메터리얼 디자인 앱 생성 class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Col..
Programming/Flutter
2020. 10. 6. 23:42