File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import 'package:dio/dio.dart'
3
3
4
4
Dio getDio ([Options options]) {
5
5
Dio dio = new Dio (BaseOptions (
6
- connectTimeout: 5000 ,
7
- receiveTimeout: 5000 ,
6
+ connectTimeout: 30 * 1000 ,
7
+ receiveTimeout: 30 * 1000 ,
8
8
)); // with default Options
9
9
dio.interceptors.add (LogInterceptor (responseBody: true ));
10
10
return dio;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import 'demo.dart' as Demo;
5
5
class Index extends StatefulWidget {
6
6
static String title = 'IconButton' ;
7
7
static String mdUrl = 'docs/widget/common/iconbutton/index.md' ;
8
- static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets /IconButton-class.html' ;
8
+ static String originCodeUrl = 'https://docs.flutter.io/flutter/material /IconButton-class.html' ;
9
9
10
10
@override
11
11
_IndexState createState () => new _IndexState ();
You can’t perform that action at this time.
0 commit comments