일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Flutter
- tflite_flutter
- buildcontext
- undefined name
- appstore connect guideline
- providernotfoundexception
- 채팅 메시지 정렬
- withopacity
- dart sdk version upgrade
- 플러터
- flutter_secure_storage
- app completeness
- flutter_dotenv
- AI
- guideline 4.3(a)
- flutter doctor -v
- app stroe connect guideline
- pub.dev
- infinity or nan toint
- information needed
- .dio
- app store connect guideline
- guideline 1.5
- permissiondeniedexception
- appstroe connect guideline
- 에러
- youtube_player_flutter
- GetX
- exception caught by image resource service
- exception
Archives
- Today
- Total
목록exception (2)
min_chan님의 블로그

에러 메시지해결방법When the exception was thrown, this was the stack의 마지막 부분에 실제 예외가 발생한 함수의 이름과 파일 위치가 출력된다.그 이미지 파일의 경로가 문제가 있어서 발생한 에러로 이미지 경로를 바꿔주니 에뮬레이터가 정상적으로 돌아간다.
Flutter
2025. 1. 9. 16:36

작성 코드void main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(); runApp(MyApp());}// 기존class MyApp extends StatelessWidget { //현재 페이지 설정 // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( home: ChattingPage(), ); }}class HomePage extends StatefulWidget { @override _HomePageStat..
Flutter
2025. 1. 9. 16:29