일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DART
- Flutter
- recyclerview
- 코틀린
- Freesound
- 장자명언
- 좋은글필사하기
- Streaming
- Firebase
- 명심보감
- kotlin
- 공자명언
- 이모지메모
- Linux
- jetpack compose
- 명언모음
- androidx
- 파이썬
- FSM
- 이모지
- 공부집중
- Android
- bash
- 오픈소스
- 1인개발자
- 소울칼리버6
- 벤자민플랭클린
- ASMR
- Coroutine
- 넷플릭스
- Today
- Total
목록Flutter (29)
Vintage appMaker의 Tech Blog
Flutter 앱에서 드래그 가능한 떠다니는 위젯을 구현할 필요가 있어 검색을 했더니 아주 깔끔한 포스팅이 있었다. Draggable Floating Action Button In Flutter Learn How to Creating a Draggable Floating Action Button In Your Flutter Apps medium.flutterdevs.com 위의 포스팅으로 구현을 해도 되지만, pub.dev에 비슷한 기능을 하는 패키지가 등록되어 있다. floating_draggable_widget | Flutter Package A flutter package for floating draggable widget. By this package a developer can implemen..
Flutter에서 최대크기 이전까지는 자동으로 늘어나다가 그 이상에서는 고정되는 화면을 구현해야 할 경우는 LimitedBox를 사용하면 된다. 전체소스 import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeDa..
이전 화면에 데이터 반환하기 새로운 화면으로부터 이전 화면으로 데이터를 반환해야하는 경우가 있습니다. 예를 들어,사용자에게 두 가지 옵션을 보여주는 화면이 있다고 합시다. 사용자가 한 옵션을 선택했을 때그것을 첫 flutter-ko.dev 다른화면에 값을 전달할 때에는 생성자로 값을 넘기면 된다. 이동한 화면에서 값을 호출한 화면으로 전달하고자 한다면 다음과 같이 이동할 화면을 호출한다. Navigator.push를 await로 호출하는 것이므로 저 코드를 포함한 함수는 async로 정의되어 있어야 한다. 호출된 화면이 종료되며 값을 반환하면 그 값은 result로 저장된다. 이동한 화면에서는 pop()으로 값을 반환한다. 두번째 파라메터로 반환한다. 전체소스는 다음과 같다. import 'package..
🍕 공식채널소개 🍕공식문서 NavigationRail class - material library - Dart API A material widget that is meant to be displayed at the left or right of an app to navigate between a small number of views, typically between three and five. The navigation rail is meant for layouts with wide viewports, such as a desktop web or tablet land api.flutter.dev Material Design에서 NavigationBar를 처리할 경우, 편리하게 사용할 수 있는 위젯이다..