일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- swift concurrency
- docker overview
- PlatformException(sign_in_failed
- dart new
- flutter widget
- com.google.GIDSignIn
- leetcode dart
- widget
- AnimationController
- flutter
- dart new 키워드
- flutter android 폴더
- tft api dart
- keychain error
- generate parentheses dart
- flutter bloc
- Architectural overview
- flutter ios 폴더
- lol api dart
- dart
- valorant api dart
- 파이썬
- riot api dart
- 발로란트 api dart
- 파이썬 부동소수점
- flutter statefulwidget
- 롤토체스 api dart
- 롤 api dart
- dart.dev
- swift 동시성
- Today
- Total
목록Android/API (2)
Coaspe
Flutter native notification을 구현하던 도중, notifiaction을 클릭하면 앱을 실행시키고 싶었습니다. 그런 동작을 위해서는 Intent에 대한 이해가 필요했습니다. 알아보도록 합시다. Intent Intent란 실행될 오퍼레이션에 대한 추상적인 묘사를 의미합니다. android.app.Activity 를 런치하기 위해 startActivity와 사용 될 수도 있고, BroadcastReceiver 컴포넌트에 인텐트를 전송하기 위해 broadcastIntent와 함께 사용 될 수도 있고, 백그라운드 android.app.Service와 동작하기 위해 android.content.Context#startService or android.content.Context#bindServ..
Flutter에서 Native 알람을 구현하는 도중에 알람이 발생하지만, 팝업이 생기지 않아 어떤 문제인지 서칭해본 결과 importance가 문제임을 깨달았습니다. 그김에 NotifiacitonChannel의 인스턴스 프로퍼티들이 어떤 역할을 하는지 모두 알아봅시다. 1. id 직관적입니다. 채널의 id를 의미하며, 패키지마다 고유한 값을 가져야한다고 합니다. 2. name 사용자에게 보여지는 채널의 이름을 의미합니다. 3. importance 채널의 importance를 의미합니다. int 값이며 값마다 다른 기능을 부여합니다. 3-1. IMPORTANCE_UNSPECIFIED 유저가 importance를 명시하지 않았을 때 부여되는 값이라고 합니다. 3-2. IMPORTANCE_NONE shade에..