일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- map
- 코틀린
- 클래스
- text
- pushnamed
- 웹크롤러
- variable
- textstyle
- 다트
- 함수
- 파이썬
- function
- Flutter
- 크롤러
- python
- texttheme
- import
- Android
- package
- set
- Collection
- 플러터
- ML
- animation
- 콜렉션
- Class
- DART
- kotlin
- List
- crawler
- Today
- Total
목록분류 전체보기 (125)
조용한 담장
원본 docker image 에 자신이 작업한 내용을 합치고자 할때 docker commit 을 사용 합니다. 1. ubuntu image 를 가져와 실행합니다. $ docker pull ubuntu $ docker run -it ubuntu 2. 내가 필요한 작업을 합니다. root@0a9b63f5f81d:/# apt-get update root@0a9b63f5f81d:/# apt-get install build-essential wget git python root@0a9b63f5f81d:/# exit 3. container 0a9b63f5f81d 의 내용을 commit 하여 새로운 이미지를 만듭니다. $ docker commit -m "ubuntu updated" 0a9b63f5f81d ubuntu..
Animation library Flutter 의 animation system 을 구현한 animation library 을 살펴보자. import package:flutter/animation.dart flutter 는 animation 을 값의 변화와 시간을 통해 표현한다. Flutter represents an animation as a value that changes over a given duration, and that value may be of any type. animation 의 시작의 값이 0 이라면 끝나는 값이 100 이라는 수의 값으로 표현한다. 이 변화되는 값은 다양한 속성에 적용되어 그 변화에 따른 animation 을 만들어 낸다. 예를들어 opacity(불투명도) 값을 ..
flutter create (플러터 새 프로젝트 생성) 명령을 통해 새로 생성된 프로젝트 코드에는 친절한 코멘트가 포함되어 있습니다. 하지만 결국 지워야할 대상인데, Android Studio 에서 쉽게 지우는 방법을 flutter twitter 에서 가져와봤습니다. 1. Ctrl + R (Replace) Replace 화면에서 Regex 를 선택합니다. 2. //.* 를 입력하고 Replace all 버튼을 클릭 합니다. 3. 창 위에서 마우스 오른쪽 버튼을 클릭하여 Reformat Code with dartfmt 를 선택합니다. 4. 끝. From Flutter Twitter : https://twitter.com/FlutterDev/status/1220753228943515648 Flutter on..
코틀린의 operation 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/collection-operations.html 을 보며 정리. standard library 에 정의된 collection operation 은 collection interface 의 member functions 와 extension functions 로 되어 있다. member functions 은 isEmpty(), get() 같은 collection type 의 필수적인 동작이 구현되어 있다. 자신의 collection interface 를 구현하고자 한다면 member function 은 반드시 구현해야 한다. 쉬운 방법은 collection interface 의 골격이 되..