Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- mac
- github
- 웹뷰
- Code
- IOS
- error
- iOS16
- Notification
- SwiftUI
- window
- geofencing
- view
- 개발자
- Git
- appstore
- Archive
- darkmode
- 한글
- rxswift
- Firebase
- Realm
- stack
- JPA
- UIButton
- Xcode
- Apple
- Session
- Swift
- FLUTTER
- MacOS
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Flutter ) GoRouteInformationProvider 에러 해결 - EEYatHo Flutter 본문
Flutter/Error
Flutter ) GoRouteInformationProvider 에러 해결 - EEYatHo Flutter
EEYatHo 2022. 6. 27. 15:07반응형
아래의 플러터 코드랩 실습 중에,
https://codelabs.developers.google.com/codelabs/flutter-boring-to-beautiful#2
This GoRouteInformationParser needs to be used with GoRouteInformationProvider, did you forget to pass in GoRouter.routeInformationProvider to the Router constructor?
'package:go_router/src/go_route_information_parser.dart':
Failed assertion: line 148 pos 13: 'routeInformation is DebugGoRouteInformation'
이런 에러가 발생하였고,
파악해보니 GoRouter라는 라이브러리의 문제였다.
버전이 올라가면서 필요해진게 추가된 것.
MaterialApp의 router 생성자에
routeInformationProvider를 추가해주면 된다.
return MaterialApp.router(
...
routeInformationProvider: appRouter.routeInformationProvider,
...
);
'Flutter > Error' 카테고리의 다른 글
flutterfire: command not found (0) | 2024.12.06 |
---|---|
Flutter ) 개발자를 확인할 수 없기 때문에 iproxy를 열 수 없습니다. - EEYatHo (0) | 2022.08.15 |
Flutter ) 터미널이 flutter 경로 인식 못할 때 - EEYatHo (0) | 2022.06.20 |
Flutter ) don't support null safety - EEYatHo (0) | 2022.06.20 |
Comments