728x90
Http 통신을 하던중에 에러 발생
해결방법
main.dart 파일에 해당 클래스 생성.
class MyHttpOverrides extends HttpOverrides{
@override
HttpClient createHttpClient(SecurityContext? context){
return super.createHttpClient(context)
..badCertificateCallback = (X509Certificate cert, String host, int port)=> true;
}
}
void main() {} 에 해당 코드 추가.
HttpOverrides.global = MyHttpOverrides();
'Flutter > 오류해결' 카테고리의 다른 글
[Flutter] Could not find package "build_runner". Did you forget to add a dependency? (0) | 2023.01.25 |
---|---|
[Flutter] type 'List<dynamic>' is not a subtype of type 'List<String>' (0) | 2023.01.23 |
에러 'vector' file not found (0) | 2022.07.27 |
에러 Cannot run with sound null safety, because the following dependencies (0) | 2022.07.27 |
에러 'TensorFlowLiteC.h' file not found (0) | 2022.07.27 |