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