══╡ EXCEPTION CAUGHT BY IMAGE RESOURCE SERVICE ╞════════════════════════════════════════════════════
The following HandshakeException was thrown resolving an image codec:
Handshake error in client (OS Error:
CERTIFICATE_VERIFY_FAILED: certificate has expired(handshake.cc:393))
When the exception was thrown, this was the stack:
#0 _SecureFilterImpl._handshake (dart:io-patch/secure_socket_patch.dart:99:46)
#1 _SecureFilterImpl.handshake (dart:io-patch/secure_socket_patch.dart:142:25)
#2 _RawSecureSocket._secureHandshake (dart:io/secure_socket.dart:911:54)
#3 _RawSecureSocket._tryFilter (dart:io/secure_socket.dart:1040:19)
Image provider: NetworkImage("https://avatars.dicebear.com/api/micah/your-custom-seed.jpg", scale:
1.0)
Image key: NetworkImage("https://avatars.dicebear.com/api/micah/your-custom-seed.jpg", scale: 1.0)
════════════════════════════════════════════════════════════════════════════════════════════════════
Я пытался интегрировать изображения профиля в свое приложение Flutter.
CircleAvatar(
// TODO username, color integration with api
backgroundImage: NetworkImage(
'https://avatars.dicebear.com/api/micah/your-custom-seed.jpg'),
radius: 17.0,
// backgroundColor: Colors.transparent,
),
[code]══╡ EXCEPTION CAUGHT BY IMAGE RESOURCE SERVICE ╞════════════════════════════════════════════════════ The following HandshakeException was thrown resolving an image codec: Handshake error in client (OS Error: CERTIFICATE_VERIFY_FAILED: certificate has expired(handshake.cc:393))
When the exception was thrown, this was the stack: #0 _SecureFilterImpl._handshake (dart:io-patch/secure_socket_patch.dart:99:46) #1 _SecureFilterImpl.handshake (dart:io-patch/secure_socket_patch.dart:142:25) #2 _RawSecureSocket._secureHandshake (dart:io/secure_socket.dart:911:54) #3 _RawSecureSocket._tryFilter (dart:io/secure_socket.dart:1040:19)
Image provider: NetworkImage("https://avatars.dicebear.com/api/micah/your-custom-seed.jpg", scale: 1.0) Image key: NetworkImage("https://avatars.dicebear.com/api/micah/your-custom-seed.jpg", scale: 1.0) ════════════════════════════════════════════════════════════════════════════════════════════════════ [/code] Я пытался интегрировать изображения профиля в свое приложение Flutter. [code] CircleAvatar( // TODO username, color integration with api backgroundImage: NetworkImage( 'https://avatars.dicebear.com/api/micah/your-custom-seed.jpg'), radius: 17.0, // backgroundColor: Colors.transparent, ), [/code] Как решить эту проблему?