일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코틀린
- recyclerview
- kotlin
- Freesound
- FSM
- 명심보감
- 오픈소스
- 명언모음
- 파이썬
- Coroutine
- 소울칼리버6
- 장자명언
- 이모지메모
- jetpack compose
- Android
- DART
- Linux
- 1인개발자
- 좋은글필사하기
- bash
- 이모지
- Firebase
- Streaming
- 넷플릭스
- 공부집중
- androidx
- Flutter
- 공자명언
- 벤자민플랭클린
- ASMR
- Today
- Total
목록Source code or Tip (207)
Vintage appMaker의 Tech Blog
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..
GitHub - VintageAppMaker/dart_webserver: dart shelf package dart shelf package. Contribute to VintageAppMaker/dart_webserver development by creating an account on GitHub. github.com dart_webserver dart로 앱/웹 개발 테스트용 서버만들기 dart web plugin : shelf https://pub.dev/packages/shelf https://pub.dev/documentation/shelf/latest/ 참고사이트: https://oldmetalmind.medium.com/dart-shelf-backend-with-dart-f068d4f37a..
🍕 공식채널소개 🍕공식문서 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를 처리할 경우, 편리하게 사용할 수 있는 위젯이다..