# Dartpad
[Flutter] Singleton Pattern(싱글톤 패턴)
Singleton Pattern(싱글톤 패턴) Flutter/Dart 클래스(객체) 이해하기 이번 글에서는 Singleton Pattern에 대해서 알아보도록 하겠다. Singleton Pattern은 제가 주로 사용하는 디자인 패턴이다. 싱글톤 패턴의 정의는 오
33. dart pad
dart pad 개념 정리자바랑 다른점 - 스태이틱이 없다. 다트는 메인메서드를 찾는데 모듈( 해당 파일 )별로 찾는다자바는 해당 파일에서 메일을 찾는다.클래스 안에 있으면 = 메서드클래스 밖에 있으면 = 함수함수는 상태를 변경시키지 않음. 함수는 인풋된 무언가를 변경

Dartpad workshop 사용해보기
https://github.com/johnpryan/dartpad_workshop_starter curl -sL https://firebase.tools | bash프로젝트 설정에서 기억해두기 firebase loginvi .zshrc 위 2.2 에
[Flutter/Dart] 반복문 for
Flutter에서 반복문에 대해서 알아보자Flutter의 반복문 for loop에는 두 가지 방법이 있다여기서 다루지는 않지만 forEach도 있다
[Flutter/Dart] Future.delayed
Future란 flutter의 비동기 작업을 처리하는 방식이며, value가 생성되기 전인 미완료와 value가 생성된 완료 두 가지의 상태를 가지고 있다Future.delayed는 duration을 통해서 value가 생성될 시간을 제어할 수 있다실제 프로젝트에서 d
[Flutter/Dart] SIngleton Pattern
class SingletonModel{ static final SingletonModel \_singletonModel = SingletonModel.\_internal(); int count = 0; factory SingletonModel() => \_sing

[Flutter] Basic Flutter layout concepts
Implement a Column that contains two text widgets:The first Text widget has the name Flutter McFlutter and the style property set to Theme.of(context)