mirror of
https://github.com/flutter/samples.git
synced 2025-11-11 15:28:44 +00:00
Add shared analysis_options.yaml to animation samples (#145)
This commit is contained in:
@@ -176,7 +176,7 @@ class _SwipeableCardState extends State<SwipeableCard>
|
||||
var description = SpringDescription(mass: 50, stiffness: 1, damping: 1);
|
||||
var simulation =
|
||||
SpringSimulation(description, _controller.value, 1, velocity);
|
||||
_controller.animateWith(simulation).then((_) {
|
||||
_controller.animateWith(simulation).then<void>((_) {
|
||||
widget.onSwiped();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ class CarouselDemo extends StatelessWidget {
|
||||
);
|
||||
}
|
||||
|
||||
Widget widgetBuilder(context, int index) {
|
||||
Widget widgetBuilder(BuildContext context, int index) {
|
||||
return images[index % images.length];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@ class Grid extends StatelessWidget {
|
||||
}
|
||||
|
||||
Route _createRoute(BuildContext parentContext, String image) {
|
||||
return PageRouteBuilder(
|
||||
return PageRouteBuilder<void>(
|
||||
pageBuilder: (context, animation, secondaryAnimation) {
|
||||
return _SecondPage(image);
|
||||
},
|
||||
@@ -74,7 +74,7 @@ class SmallCard extends StatelessWidget {
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
var nav = Navigator.of(context);
|
||||
nav.push(_createRoute(context, imageAssetName));
|
||||
nav.push<void>(_createRoute(context, imageAssetName));
|
||||
},
|
||||
child: Image.asset(
|
||||
imageAssetName,
|
||||
|
||||
Reference in New Issue
Block a user