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

디스크 이미지가 dynamic disk 이면 동적으로 이미지 크기가 늘지만 줄지는 않는다. guest os 안에서 파일을 지워도 실제 이미지의 크기가 줄지 않으므로 툴을 사용해 줄인다. storage 가 Dynamically allocated storage 인지 확인한다. Windows Guest 의 경우 1. 게스트 윈도우즈에서 디스크 조각모음을 한번 실행한다. 2. SDelete 를 다운받는다. 3. Command Prompt 에서 아래의 명령을 실행한다. sdelete.exe c: -z 4. 게스트 윈도우즈를 종료한다. Linux Guest 의 경우 1. zerofree 를 설치한다. sudo apt install zerofree 2. 게스트 리눅스를 재부팅 하고 GRUB 에서 "Advanced o..

AnimatedSwitcher Flutter Sample flutter.dev 의 예제 코드 실행 화면 ScaleTransition 각각의 widget 이 다른 key 값을 가져야 새로운 widget으로 인식하고 animation 동작이 일어난다. FadeTransition transition 을 FadeTransition 으로 사용해 보았다. Reference https://api.flutter.dev/flutter/widgets/AnimatedSwitcher-class.html

BottomAppBar A container that is typically used with Scaffold.bottomNavigationBar, and can have a notch along the top that makes room for an overlapping FloatingActionButton. 자유롭게 구현이 가능한 것 같다. BottomNavigationBar A material widget that's displayed at the bottom of an app for selecting among a small number of views, typically between three and five. The bottom navigation bar consists of multiple..

Tab Tab, TabBar, TabBarView, TabController Tab A material design TabBar tab. If both icon and text are provided, the text is displayed below the icon. TabBar A material design widget that displays a horizontal row of tabs. Typically created as the AppBar.bottom part of an AppBar and in conjunction with a TabBarView. TabBarView A page view that displays the widget which corresponds to the current..