|
|
@ -18,8 +18,19 @@ class _DioErrorBuilderState extends State<DioErrorBuilder> {
|
|
|
|
color: Colors.red.withOpacity(0.1),
|
|
|
|
color: Colors.red.withOpacity(0.1),
|
|
|
|
child: ListTile(
|
|
|
|
child: ListTile(
|
|
|
|
onTap: () {},
|
|
|
|
onTap: () {},
|
|
|
|
title: Text(_request.path),
|
|
|
|
title: Text(
|
|
|
|
subtitle: Text(widget.data.message),
|
|
|
|
_request.path,
|
|
|
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
|
|
|
color: Colors.black87,
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
subtitle: Text(
|
|
|
|
|
|
|
|
widget.data.message,
|
|
|
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
|
|
|
color: Colors.black45,
|
|
|
|
|
|
|
|
fontWeight: FontWeight.w300,
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
trailing: Row(
|
|
|
|
trailing: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|