File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import '../widgets/method_list_view.dart';
14
14
import '../widgets/selected_assets_list_view.dart' ;
15
15
import 'picker_method.dart' ;
16
16
17
- @optionalTypeArgs
18
17
mixin ExamplePageMixin <T extends StatefulWidget > on State <T > {
19
18
final ValueNotifier <bool > isDisplayingDetail = ValueNotifier <bool >(true );
20
19
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class MultiAssetsPage extends StatefulWidget {
14
14
}
15
15
16
16
class _MultiAssetsPageState extends State <MultiAssetsPage >
17
- with AutomaticKeepAliveClientMixin , ExamplePageMixin {
17
+ with AutomaticKeepAliveClientMixin , ExamplePageMixin < MultiAssetsPage > {
18
18
@override
19
19
int get maxAssetsCount => 9 ;
20
20
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class SingleAssetPage extends StatefulWidget {
15
15
}
16
16
17
17
class _SingleAssetPageState extends State <SingleAssetPage >
18
- with AutomaticKeepAliveClientMixin , ExamplePageMixin {
18
+ with AutomaticKeepAliveClientMixin , ExamplePageMixin < SingleAssetPage > {
19
19
@override
20
20
int get maxAssetsCount => 1 ;
21
21
You can’t perform that action at this time.
0 commit comments