본문 바로가기

DART

[DART] Dart 3.0 신규 문법 1. Records Records are an anonymous, immutable, aggregate type. Like other collection types, they let you bundle multiple objects into a single object. Unlike other collection types, records are fixed-sized, heterogeneous, and typed.Records are real values; you can store them in variables, nest them, pass them to and from functions, and store them in data structures such as lists, maps, and sets.. 더보기
[DART] connectivity_plus Package https://pub.dev/packages/connectivity_plus connectivity_plus | Flutter Package Flutter plugin for discovering the state of the network (WiFi & mobile/cellular) connectivity on Android and iOS. pub.dev https://plus.fluttercommunity.dev/docs/connectivity_plus/overview/ Connectivity Plus Overview | Flutter Community Plus Plugins Connectivity Plus Overview plus.fluttercommunity.dev 앱이 디바이스의 네트워크 연결에.. 더보기
[DART] flutter_dotenv Package https://pub.dev/packages/flutter_dotenv flutter_dotenv | Flutter Package Easily configure any flutter application with global variables using a `.env` file. pub.dev 앱 전체에서 사용할 수 있는 .env 파일에 세팅을 하고, 런타임 시 세팅을 불러오는 패키지이다. 설치 $ flutter pub add flutter_dotenv 명령어를 입력하면 프로젝트의 pubspec.yaml 파일에 다음과 같은 줄이 추가된다. (암시적으로 flutter pub get 실행) dependencies: flutter_dotenv: ^5.0.2 작성일 22-08-26 의 최신 버전. import .. 더보기
[DART] 기본 문법 익히기 Dart는 자바스크립트와 매우 유사하다. 간단하게 Dart 문법에 대해서 알아보자. void main() { // 실행되는 코드... } 기본적으로 main() {} 내부에서 코드를 작성한다. 1. console 출력하기 void main() { print('Hello world'); } 2. 변수 Variable void main() { var name = '다트 언어'; print(name); } 변수를 var로 선언할 경우 모든 타입의 초깃값을 할당할 수 있다. (string, integer, double, boolean ...) 그래서 var 대신에 String, int, double, bool 등의 정확한 타입을 지정해서 변수를 만드는 걸 권장한다. ⭐ var로 변수 선언 후, 재 할당할 수 있.. 더보기