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'
33
44Dio getDio ([Options options]) {
55 Dio dio = new Dio (BaseOptions (
6- connectTimeout: 5000 ,
7- receiveTimeout: 5000 ,
6+ connectTimeout: 30 * 1000 ,
7+ receiveTimeout: 30 * 1000 ,
88 )); // with default Options
99 dio.interceptors.add (LogInterceptor (responseBody: true ));
1010 return dio;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import 'demo.dart' as Demo;
55class Index extends StatefulWidget {
66 static String title = 'IconButton' ;
77 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' ;
99
1010 @override
1111 _IndexState createState () => new _IndexState ();
You can’t perform that action at this time.
0 commit comments