일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- rxswift
- Archive
- Code
- darkmode
- Apple
- Python
- IOS
- Realm
- 개발자
- Xcode
- error
- appstore
- stack
- FLUTTER
- SwiftUI
- 한글
- Swift
- Notification
- window
- 웹뷰
- MacOS
- JPA
- github
- UIButton
- iOS16
- view
- Firebase
- mac
- Git
- Session
- Today
- Total
목록Flutter (12)
EEYatHo 앱 깎는 이야기
view -> Bloc 이벤트 주입BlocProvider .of(context) .add(MyEvent(id));context.read().add(MyEvent()); BlocBuilder 없이 view 에서 state값 바로 사용하기 글로벌 블럭 사용에 용이context.select((MyBloc bloc) => bloc.state.nowIndex); BlocBuilder 없이 view 에서 state값 바로 사용하기 글로벌 블럭 사용에 용이
개요 2023 Google I/O Extended 에서, 박제창님이 진행해주신 Flutter 2023 Recap 세션을 정리한다. 발표 자료 제공해주셔서 감사합니다. Flutter 2023 Recap Google I/O 2023 에서 Flutter 에 대한 내용을 Recap 하는 세션. [ 목차 ] Intro. What's Flutter 1. What's new in Dart and Flutter 2. Design for every device with Flutter and Material 3 3. What's new in Firebase's Flutter 4. Flutter's new rendering engine 5. Evolving Flutter's support for the Web 6. Flut..
DefaultTabController 를 기반으로 탭바를 구현했을 때, 다른 탭으로 가면 기존에 보이던 화면이 dispose (deinit) 된다. 그래서 다시 돌아왔을 때는 initState 부터 시작한다. 이를 방지하기 위해, 다른 탭에가도 dispose 되지 않게 할 수 있다. Solution dispose 되지 않길 바라는 화면의 State 에 AutomaticKeepAliveClientMixin 을 Mixin 하고, wantKeepAlive 를 true 로 override 해준다. // dispose 되지 않길 바라는 화면의 State class _SomeTabState extends State with AutomaticKeepAliveClientMixin { ... // 다른 탭 갔다와도 di..
코틀린 코드 호출 포스팅 Flutter -> Kotlin 전달 static const platform = MethodChannel('channelName'); var result = await platform.invokeMethod('methodName', {'param1': [1, 2], 'param2': "stringParam"}); Kotlin 에서 수신 flutterEngine?.dartExecutor?.let { MethodChannel(it, 'channelName').setMethodCallHandler { call, result -> if (call.method == "methodName") { val param1 = call.argument("param1")?.toIntArray val ..
플러터에서 코틀린에 배열을 전달하게되면, java.uril.ArrayList 로 수신하게 된다. 이를 Kotlin 에서 사용하는 IntArray, LongArray 등으로 바꾸려면 아래처럼 하면 된다. call.argument("IntListName")?.toIntArray()
공식 문서는 비교적 쉽게 따라할 수 있게 작성되어있다. 하지만 따라했는데 작동이 안된다.. 플러터 코틀린 호출 공식 문서 공식 문서가 잘못되서 삽질하면서 수정한 부분을 정리한다. import io.flutter.app.FlutterActivity io.flutter.app.FlutterActivity 는 deprecated 되었다. io.flutter.embedding.android.FlutterActivity 를 사용해야한다. // import io.flutter.app.FlutterActivity import io.flutter.embedding.android.FlutterActivity 이에 따라 registerWith 함수도 다르게 사용해야한다. import io.flutter.plugins.Ge..
고차함수 ( Higher-order function ) 함수를 파라미터로 받거나, 함수를 리턴하는 함수 Dart에서 제공하는 고차함수를 셀수도 없이 많다. 자주 사용하는 순으로 정리한다. map ( + mapIndexed ) where reduce fold forEach ( + forEachIndexed ) Iterable 이란? 들어가기 전에, Dart의 대부분 컬랙션에 적용하는 고차함수는 Iterable을 반환한다. Iterable은 Dart에서 직렬적으로 원소들을 엑세스 할 수 있는 컬랙션들의 최상위 추상 클래스이다. ( List, Set, Map 등 ) ( 원문 : A collection of values, or "elements", that can be accessed sequentially. ..
1. package:flutter/foundation.dart 사용 import 'package:flutter/foundation.dart'; if (defaultTargetPlatform == TargetPlatform.iOS) { // ios } else if (defaultTargetPlatform == TargetPlatform.android) { // android } ... /// fuchsia, linux, macOS, windows 2. dart:io 사용 import 'dart:io'; if (Platform.isIOS) { // iOS } else if (Platform.isAndroid) { // android } ... /// isLinux, isMacOS, isWindows, ..