Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
40af7db6
Unverified
Commit
40af7db6
authored
Aug 25, 2023
by
gmilou
Committed by
GitHub
Aug 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an example showing how to use a MatrixTransition. (#132874)
parent
cd03eabd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
139 additions
and
1 deletion
+139
-1
matrix_transition.0.dart
...ples/api/lib/widgets/transitions/matrix_transition.0.dart
+75
-0
matrix_transition.0_test.dart
...pi/test/widgets/transitions/matrix_transition.0_test.dart
+56
-0
transitions.dart
packages/flutter/lib/src/widgets/transitions.dart
+8
-1
No files found.
examples/api/lib/widgets/transitions/matrix_transition.0.dart
0 → 100644
View file @
40af7db6
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:math'
;
import
'package:flutter/material.dart'
;
/// Flutter code sample for [MatrixTransition].
void
main
(
)
=>
runApp
(
const
MatrixTransitionExampleApp
());
class
MatrixTransitionExampleApp
extends
StatelessWidget
{
const
MatrixTransitionExampleApp
({
super
.
key
});
@override
Widget
build
(
BuildContext
context
)
{
return
const
MaterialApp
(
home:
MatrixTransitionExample
(),
);
}
}
class
MatrixTransitionExample
extends
StatefulWidget
{
const
MatrixTransitionExample
({
super
.
key
});
@override
State
<
MatrixTransitionExample
>
createState
()
=>
_MatrixTransitionExampleState
();
}
/// [AnimationController]s can be created with `vsync: this` because of
/// [TickerProviderStateMixin].
class
_MatrixTransitionExampleState
extends
State
<
MatrixTransitionExample
>
with
TickerProviderStateMixin
{
late
AnimationController
_controller
;
late
Animation
<
double
>
_animation
;
@override
void
initState
()
{
super
.
initState
();
_controller
=
AnimationController
(
duration:
const
Duration
(
seconds:
2
),
vsync:
this
,
)..
repeat
();
_animation
=
CurvedAnimation
(
parent:
_controller
,
curve:
Curves
.
linear
,
);
}
@override
void
dispose
()
{
_controller
.
dispose
();
super
.
dispose
();
}
@override
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
body:
Center
(
child:
MatrixTransition
(
animation:
_animation
,
child:
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
),
child:
FlutterLogo
(
size:
150.0
),
),
onTransform:
(
double
value
)
{
return
Matrix4
.
identity
()
..
setEntry
(
3
,
2
,
0.004
)
..
rotateY
(
pi
*
2.0
*
value
);
},
),
),
);
}
}
examples/api/test/widgets/transitions/matrix_transition.0_test.dart
0 → 100644
View file @
40af7db6
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/material.dart'
;
import
'package:flutter_api_samples/widgets/transitions/matrix_transition.0.dart'
as
example
;
import
'package:flutter_test/flutter_test.dart'
;
void
main
(
)
{
testWidgets
(
'Shows Flutter logo inside a MatrixTransition'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
const
example
.
MatrixTransitionExampleApp
(),
);
final
Finder
transformFinder
=
find
.
ancestor
(
of:
find
.
byType
(
FlutterLogo
),
matching:
find
.
byType
(
MatrixTransition
),
);
expect
(
transformFinder
,
findsOneWidget
);
});
testWidgets
(
'MatrixTransition animates'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
const
example
.
MatrixTransitionExampleApp
(),
);
final
Finder
transformFinder
=
find
.
ancestor
(
of:
find
.
byType
(
FlutterLogo
),
matching:
find
.
byType
(
Transform
),
);
Transform
transformBox
=
tester
.
widget
(
transformFinder
);
Matrix4
actualTransform
=
transformBox
.
transform
;
// Check initial transform.
expect
(
actualTransform
,
Matrix4
.
fromList
(<
double
>[
1.0
,
0.0
,
0.0
,
0.0
,
0.0
,
1.0
,
0.0
,
0.0
,
0.0
,
0.0
,
1.0
,
0.0
,
0.0
,
0.0
,
0.004
,
1.0
,
])..
transpose
());
// Animate half way.
await
tester
.
pump
(
const
Duration
(
seconds:
1
));
transformBox
=
tester
.
widget
(
transformFinder
);
actualTransform
=
transformBox
.
transform
;
// The transform should be updated.
expect
(
actualTransform
,
isNot
(
Matrix4
.
fromList
(<
double
>[
1.0
,
0.0
,
0.0
,
0.0
,
0.0
,
1.0
,
0.0
,
0.0
,
0.0
,
0.0
,
1.0
,
0.0
,
0.0
,
0.0
,
0.004
,
1.0
,
])..
transpose
()));
});
}
packages/flutter/lib/src/widgets/transitions.dart
View file @
40af7db6
...
@@ -236,6 +236,13 @@ typedef TransformCallback = Matrix4 Function(double animationValue);
...
@@ -236,6 +236,13 @@ typedef TransformCallback = Matrix4 Function(double animationValue);
/// The [onTransform] callback computes a [Matrix4] from the animated value, it
/// The [onTransform] callback computes a [Matrix4] from the animated value, it
/// is called every time the [animation] changes its value.
/// is called every time the [animation] changes its value.
///
///
/// {@tool dartpad}
/// The following example implements a [MatrixTransition] with a rotation around
/// the Y axis, with a 3D perspective skew.
///
/// ** See code in examples/api/lib/widgets/transitions/matrix_transition.0.dart **
/// {@end-tool}
///
/// See also:
/// See also:
///
///
/// * [ScaleTransition], which animates the scale of a widget, by providing a
/// * [ScaleTransition], which animates the scale of a widget, by providing a
...
@@ -311,7 +318,7 @@ class MatrixTransition extends AnimatedWidget {
...
@@ -311,7 +318,7 @@ class MatrixTransition extends AnimatedWidget {
/// Animates the scale of a transformed widget.
/// Animates the scale of a transformed widget.
///
///
/// Here's an illustration of the [ScaleTransition] widget, with it's [
alignment
]
/// Here's an illustration of the [ScaleTransition] widget, with it's [
scale
]
/// animated by a [CurvedAnimation] set to [Curves.fastOutSlowIn]:
/// animated by a [CurvedAnimation] set to [Curves.fastOutSlowIn]:
/// {@animation 300 378 https://flutter.github.io/assets-for-api-docs/assets/widgets/scale_transition.mp4}
/// {@animation 300 378 https://flutter.github.io/assets-for-api-docs/assets/widgets/scale_transition.mp4}
///
///
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment