일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- jetpack compose
- 명언모음
- Streaming
- kotlin
- 공자명언
- 소울칼리버6
- 오픈소스
- 이모지메모
- 넷플릭스
- 파이썬
- 코틀린
- DART
- Android
- Firebase
- recyclerview
- androidx
- Flutter
- Coroutine
- 공부집중
- 장자명언
- 명심보감
- 1인개발자
- 벤자민플랭클린
- bash
- FSM
- ASMR
- Freesound
- 이모지
- Linux
- 좋은글필사하기
Archives
- Today
- Total
목록flutter Audioplayer (1)
Vintage appMaker의 Tech Blog
[Flutter] audioplayers를 이용한 mp3 플레이
1. 설치 flutter pub add audioplayers 2. Player 객체생성 및 UI에 사용할 변수정의 3. 이벤트 핸들러 작성 initState에서 - 플레이어 상태를 채크히가 위해 onPlayerStateChanged.listen(파라메터값){} - 플레이위치를 얻기위해 onPositionChanged.listen(파라메터값){} 를 구현한다. 파라메터값이 포함된 정보로 프로그래시브 처리와 시간을 표시할 수있다. ... player.onPlayerStateChanged.listen((PlayerState event) { print("state: ${event.name}"); setState(() { if (event.name == "playing") { isPlaying = true; }..
Source code or Tip/Flutter & Dart
2022. 11. 14. 16:59