반응형
Flutter 플러터 진동 간단 사용법 vibration
패키지 정보 vibration | Flutter Package A plugin for handling Vibration API on iOS, Android, and web. pub.dev 터미널 설치 flutter pub add vibration 코드 작성 import 'package:vibration/vibration.dart'; void OnVibration() { Vibration.vibrate(duration: 1000); //1000 = 1초 }
- 개발/플러터 (Flutter)
- · 2022. 12. 24.
Flutter 플러터 화면 전환 Navigator.push 간단 사용법
코드 예시 Widget build(BuildContext context) { return Scaffold( body: Center( child: ElevatedButton( child: Text( "메인 화면 이동", ), onPressed: () { Navigator.push( context, MaterialPageRoute(builder: (context) => MyApp()), ); }, ), )); } }
- 개발/플러터 (Flutter)
- · 2022. 12. 24.
반응형