develop 73

[Flutter] dart List선언하기 하기 (dart 기초 2-1)

1. 선언 - 크기 고정 [ Like array ] _ fixed length list var newList = new List(10);// list의 크기 == 10 var newListFive = List.filled(5, 0);// 0으로 초기화된 list의 크기 == 5 고정된 크기의 list 이므로, add, removeAt 이 불가능하다. - 가변 리스트 _ growable list var list1 = ['가', '나', '다'];// 값과 함께 리스트를 선언 및 초기화 var list2 = new List(); // 길이가 0인 리스트 선언 및 초기화 var list3 = new List.empty(growable: true); // 인자로 전달 var list4 = List.filled(..

develop/Flutter 2022.10.17

[배포] 앱 배포에 도움이 되는 사이트 모음

앱을 배포하려면 다양한 것들이 필요한데, 그 중에는 스크린샷, 개인정보 처리 방침 등이 있다. 개인정보 처리 방침 앱 배포시 많이 사용하는 사이트이다. https://app-privacy-policy-generator.firebaseapp.com App Privacy Policy Generator Terms & Conditions By downloading or using the app, these terms will automatically apply to you – you should make sure therefore that you read them carefully before using the app. You’re not allowed to copy or modify the app, any p..

develop/배포 2022.10.15

[Flutter] dart 출력 하기, 변수/상수 선언 하기 (dart 기초 1)

DART 시작하기 Dart는, dart는 flutter를 하기 위해 꼭 배워야 하는 언어이다. 안드로이드 스튜디오, IntelliJ IDEA, VS Code에서 dart를 지원한다. 공식 사이트는 아래와 같다. https://dart.dev Dart programming language Dart is a client-optimized language for fast apps on any platform dart.dev 또한 공식 사이트에서 아래와 같이 효과적인 프로그래밍에 대한 가이드라인을 정의 해두었으니, 참고 할 수 있다. https://dart.dev/guides/language/effective-dart Effective Dart Best practices for building consisten..

develop/Flutter 2022.10.13