일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Flutter
- import
- 플러터
- 웹크롤러
- python
- package
- text
- Collection
- Class
- pushnamed
- map
- 클래스
- 다트
- 함수
- texttheme
- Android
- crawler
- textstyle
- 크롤러
- List
- 콜렉션
- function
- DART
- animation
- kotlin
- 파이썬
- set
- 코틀린
- ML
- variable
- Today
- Total
목록분류 전체보기 (125)
조용한 담장

코틀린의 collection 의 transformation 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/collection-transformations.html 을 보며 정리. 한 collection 에서 다른 형태로 변형시키는 확장 함수들을 제공한다. Mapping 다른 collection 의 element 로 부터 mapping transformation 을 만든다. 기본 함수는 map() 이다. inline fun Iterable.map( transform: (T) -> R ): List 주어진 람다 함수를 각 element 에 적용하여 그 결과를 가진 List 를 리턴한다. element 의 순서는 원본의 collection 과 같다. mapInde..
매번 까먹지 말고 기록... VirtualBox 에 그래픽 빼고 설치하고 삼바까지 설치하니 1.6GB 1. 유저추가 (root) $ su - $ adduser username buster 에서는 su 가 아닌 su - 를 사용해야 한다. link 2. 유저 sudo group 에 추가 $ su - $ apt install sudo $ usermod -aG sudo username 3. samba 설치 와 smb.cfg 설정 $ sudo apt install samba $ sudo vi /etc/samba/smb.conf [share] comment = my share path = /share/path browseable = yes read only = no create mask = 0700 directo..

여러 animation 을 시차를 두고 연속적으로 만드는 방법을 설명한 아래의 페이지의 내용을 살펴보자. https://flutter.dev/docs/development/ui/animations/staggered-animations Staggered Animations {{site.alert.secondary}} What you’ll learn * A staggered animation consists of sequential or overlapping animations. * To create a staggered animation, use multiple Animation objects. * One AnimationController controls all of the Animations. * Ea..

앱의 페이지(Page) 또는 루트(Route) 사이의 이동할 때 animation 을 만들어주는 위젯이다. 특히 이동하는 페이지 사이에 공통된 이미지 영역이 있다면 이를 기반으로 animation 을 만들기 위해 사용할 수 있다. 예를 들어 쇼핑앱의 제품 사진으로 된 목록중 하나를 선택하면 그 사진이 커지면서 제품의 상세 내용을 보여주는 동작을 생각해 볼 수 있다. 위와 같이 이동하는 페이지 사이의 공통되게 보여주는 부분에 대한 animation 을 만드는데 사용한다. Hero({ Key key, @required Object tag, CreateRectTween createRectTween, HeroFlightShuttleBuilder flightShuttleBuilder, HeroPlaceholder..