일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코틀린
- animation
- kotlin
- 콜렉션
- 파이썬
- 다트
- ML
- map
- DART
- python
- text
- import
- 함수
- 플러터
- 웹크롤러
- crawler
- textstyle
- texttheme
- Android
- package
- pushnamed
- 크롤러
- Flutter
- function
- List
- set
- Collection
- Class
- variable
- 클래스
- Today
- Total
목록DART (16)
조용한 담장
원문 : Announcing Dart 2.5 ML Complete code completion 에 machine learning 기술이 적용된다. GitHub 의 Dart Code 들을 기반으로 개발한 ML model 이 개발자의 다음 코드 심볼을 추측해서 제안한다. 예제로 보면 변수 이름 var now 를 보고 DateTime.now()를 제안한다. Dart analyzer 에 포함된 기능이기 때문에 개발툴이나 에디터에 상관없이 사용할 수 있다. dart:ffi foreign function interface for Dart-C interop C interop using dart:ffi dart:ffi를 통해 C 코드나 C 코드 기반의 라이브러리나 프로그램들을 호출할 수 있다. 예제로 C 함수인 sys..
Dart Funciton Function object function 은 Function type 을 가지는 object 이다. 변수에 할당되거나 다른 함수의 인자가 될 수있다. bool isNoble(int atomicNumber) { return _nobleGases[atomicNumber] != null; } isNoble(atomicNumber) { return _nobleGases[atomicNumber] != null; } bool isNoble(int atomicNumber) => _nobleGases[atomicNumber] != null; return type 이 생략될 수 있다. => expr 은 { return expr } 와 동일하다. parameters Mandatory param..
AnimatedSwitcher Flutter Sample flutter.dev 의 예제 코드 실행 화면 ScaleTransition 각각의 widget 이 다른 key 값을 가져야 새로운 widget으로 인식하고 animation 동작이 일어난다. FadeTransition transition 을 FadeTransition 으로 사용해 보았다. Reference https://api.flutter.dev/flutter/widgets/AnimatedSwitcher-class.html
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..