-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathextended.dart
42 lines (40 loc) · 1014 Bytes
/
extended.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import 'package:extended_image/extended_image.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
Widget defaultLoadStateChanged(ExtendedImageState state,
{double iconSize = 16}) {
switch (state.extendedImageLoadState) {
case LoadState.loading:
return Center(
child: Center(
child: SizedBox(
width: iconSize,
height: iconSize,
child: CupertinoActivityIndicator(),
),
),
);
break;
case LoadState.failed:
return GestureDetector(
child: Stack(
fit: StackFit.expand,
alignment: AlignmentDirectional.center,
children: <Widget>[
Icon(
Icons.error,
size: iconSize,
color: Colors.grey[600],
)
],
),
onTap: () {
state.reLoadImage();
},
);
break;
default:
return null;
}
}
class MiniActivityIndicator {}