일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- set
- pushnamed
- variable
- 웹크롤러
- DART
- 파이썬
- map
- 함수
- text
- python
- 코틀린
- 크롤러
- Collection
- textstyle
- 클래스
- kotlin
- crawler
- Android
- Flutter
- 콜렉션
- animation
- ML
- package
- import
- 플러터
- List
- texttheme
- 다트
- Class
- function
- Today
- Total
목록분류 전체보기 (125)
조용한 담장
permission_handler 사용자에게 앱 기능을 위한 권한을 요구하는 Flutter 패키지 이다. https://pub.dev/packages/permission_handler 이 패키지를 사용하기 위해서 이 앱이 시스템에 요구하는 권한에 대한 정보를 추가해야 한다. Android 는 AndroidManifest.xml, iOS 는 Info.plist 파일에 내용을 추가해야 한다. 안드로이드 환경에서 테스트 해 보았다. 패키지 설치 pubspec.yaml 파일 수정. dependencies: path_provider: ^1.4.0 AndroidManifest.xml 수정 runApp(MyApp()); class MyApp extends StatelessWidget { ... 패키지를 추가한다. 아..
dart print() Dart 의 프린트 함수 문자열 출력, 변수 값 출력. $variableName (or ${expression}) 를 사용하여 String 에 변수 값 포함하여 출력. print('hello'); var world = 'world'; print('hello $world'); print('hello ' + world); var helloWorld = ['hello', 'world']; print(helloWorld); print('${helloWorld[0]} ${helloWorld.elementAt(1)} !!!'); print(helloWorld.length); print('${helloWorld.length}'); // Output: // hello // hello world ..
DataTable Material Design 의 데이터 테이블을 그려주는 Flutter Widget 이다. DataTable class DataTable({Key key, @required List columns, int sortColumnIndex, bool sortAscending: true, ValueSetter onSelectAll, double dataRowHeight: kMinInteractiveDimension, double headingRowHeight: 56.0, double horizontalMargin: 24.0, double columnSpacing: 56.0, @required List rows }) columns 리스트는 표의 첫 행에 들어가는 데이터 리스트 이며 각 열의 이름..
Draggable 위젯을 드래그 하여 움직일 수 있게 해보자. Draggable class Draggable({Key key, @required Widget child, @required Widget feedback, T data, Axis axis, Widget childWhenDragging, Offset feedbackOffset: Offset.zero, DragAnchor dragAnchor: DragAnchor.child, Axis affinity, int maxSimultaneousDrags, VoidCallback onDragStarted, DraggableCanceledCallback onDraggableCanceled, DragEndCallback onDragEnd, VoidCallbac..