일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- github
- jupyter lab
- Houdini
- Data Structure
- Flutter
- Algorithm
- C++
- c#
- c# winform
- jupyter
- Python
- gitlab
- 구조체
- 포인터
- c# 추상 클래스
- Unity
- C# delegate
- c# 윈폼
- docker
- dart 언어
- 플러터
- HTML
- 유니티
- c언어
- git
- 다트 언어
- 깃
- 도커
- C언어 포인터
- vim
Archives
- Today
- Total
목록플러터 샘플 앱 (1)
nomad-programmer
[Programming/Flutter] Sample APP 분석
프로젝트를 새로 작성하면 샘플 앱이 표시된다. 프로젝트 창의 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