일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Freesound
- FSM
- 소울칼리버6
- 명언모음
- 파이썬
- Flutter
- bash
- 벤자민플랭클린
- Android
- Linux
- Streaming
- Coroutine
- kotlin
- 좋은글필사하기
- ASMR
- jetpack compose
- 코틀린
- androidx
- 명심보감
- DART
- recyclerview
- 넷플릭스
- 이모지
- 장자명언
- 오픈소스
- Firebase
- 이모지메모
- 1인개발자
- 공부집중
- 공자명언
- Today
- Total
목록Flutter (29)
Vintage appMaker의 Tech Blog
Flutter에서는 자신을 감싸고 있는 위젯의 영역을 넘어 특정 위치로 이동하고자 할 때, Transform 위젯을 사용한다. Transform.translate( offset: const Offset(X값, Y값), child : 위젯 ) 이렇게 했을 경우, Column을 사용할 때, 이전 Item 위젯의 영역까지 침범하여 위젯의 위치를 설정할 수 있다. 다음은 간단한 전체소스이다. [전체소스] import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { final title = 'Tr..
App에서 그라데이션을 적용해야 할 경우는 종종 발생한다. 배경만 간단하게 적용해야 할 경우라면 Container의 파라메터 decoration에 BoxDecoration 위젯을 사용하면 된다. 그러나 이미지나 다른 위젯 전체 에 적용해야 한다면 ShaderMask를 사용해야 한다. BoxDecoration class - painting library - Dart API An immutable description of how to paint a box. The BoxDecoration class provides a variety of ways to draw a box. The box has a border, a body, and may cast a boxShadow. The shape of the bo..
🍕가장 깔끔하고 정리잘된 포스팅. 플러그인을 사용하는 방법과 사용하지 않는 방법으로 예제 구현. Flutter: Scrolling to a desired Item in a ListView - Kindacode This article shows you some different ways to programmatically scroll to a desired item in a ListView in Flutter, for instance, scrolling to the item with the index of N when the user presses a floating... www.kindacode.com 🍕복잡한 화면에서 원하는 Widget으로 이동하는 예제. 설명, 예제 깔끔함 Exploring Flut..
Autocomplete class - material library - Dart API A widget for helping the user make a selection by entering some text and choosing from among a list of options. The user's text input is received in a field built with the fieldViewBuilder parameter. The options to be displayed are determined using options api.flutter.dev [전체소스] import 'package:flutter/material.dart'; void main() => runApp(const A..