Home
last modified time | relevance | path

Searched full:animations (Results 1 – 25 of 139) sorted by relevance

123456

/third_party/flutter/flutter/examples/layers/raw/
Dspinning_square.dart14 // should use to clock our animations. It's important to use timeStamp rather
16 // coordinate the timings of their animations. If each component read the
17 // system clock independently, the animations that we processed later would be
18 // slightly ahead of the animations we processed earlier.
/third_party/flutter/flutter/packages/flutter/lib/
Danimation.dart9 /// See [flutter.dev/animations](https://flutter.dev/animations/) for an overview.
16 export 'src/animation/animations.dart';
Dphysics.dart6 /// gravity, for use in user interface animations.
/third_party/flutter/flutter/packages/flutter/test/widgets/
Danimated_list_test.dart10 final Map<int, Animation<double>> animations = <int, Animation<double>>{};
18 animations[index] = animation;
32 expect(animations.containsKey(0), true);
33 expect(animations.containsKey(1), true);
34 expect(animations[0].value, 1.0);
35 expect(animations[1].value, 1.0);
/third_party/flutter/flutter/packages/flutter/lib/src/animation/
Danimations.dart476 /// If the two animations start at the same value, then the
482 /// Since this object must track the two animations even when it has no
524 /// This is not called if the two animations provided to the constructor have
600 /// An interface for combining multiple Animations. Subclasses need only
601 /// implement the `value` getter to control how the child animations are
602 /// combined. Can be chained to combine more than 2 animations.
613 /// be a CompoundAnimation itself to combine multiple animations.
676 /// An animation of [double]s that tracks the mean of two other animations.
682 /// of the values of the `left` and `right` animations.
684 /// Creates an animation that tracks the mean of two other animations.
[all …]
Danimation_controller.dart44 /// Configures how an [AnimationController] behaves when animations are disabled.
47 /// Flutter to reduce or disable animations as much as possible. To honor this,
48 /// we reduce the duration and the corresponding number of frames for animations.
62 /// This is the default for repeating animations in order to prevent them from
116 /// The methods that start animations return a [TickerFuture] object which
262 /// This constructor is most useful for animations that will be driven using a
543 … // Since the framework cannot handle zero duration animations, we run it at 5% of the normal
544 // duration to limit most animations to a single frame.
/third_party/flutter/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieActivity.java120 //start and show animations that were in the background in inflateView()
130 //stop and hide animations in the background in inflateView()
190 int animations = mAnimations.size(); in addLottie() local
191 if (animations < mRowCount * mColumnCount) { in addLottie()
194 int row = animations / mColumnCount, column = animations % mColumnCount; in addLottie()
/third_party/flutter/skia/site/user/modules/
Dskottie.md4 Skia now offers a performant, secure native player for JSON animations derived
8 The player aims to build upon the Lottie player widely used for animations
15 Sample JSON animations
45 *Sample animations courtesy of the lottiefiles.com community
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dvisibility.dart69 …assert(maintainState == true || maintainAnimation == false, 'Cannot maintain animations if the sta…
70 …inAnimation == true || maintainSize == false, 'Cannot maintain size if animations are not maintain…
123 /// Whether to maintain animations within the [child] subtree when it is
128 /// Keeping animations active when the widget is not visible is even more
151 /// expensive than just keeping animations running without maintaining the
169 /// * [AnimatedOpacity] and [FadeTransition], which apply animations to the
/third_party/flutter/flutter/packages/flutter/lib/src/scheduler/
Dpriority.dart16 /// A task to run after all other tasks, when no animations are running.
19 /// A task to run even when animations are running.
/third_party/flutter/flutter/packages/flutter/test/material/
Dflat_button_test.dart74 await tester.pump(); // Start the splash and highlight animations.
139 await tester.pump(); // Start the splash and highlight animations.
208 await tester.pump(); // Start the splash and highlight animations.
274 await tester.pump(); // Start the splash and highlight animations.
Draised_button_test.dart74 await tester.pump(); // Start the splash and highlight animations.
143 await tester.pump(); // Start the splash and highlight animations.
210 await tester.pump(); // Start the splash and highlight animations.
Dmaterial_button_test.dart30 await tester.pump(); // Start the splash and highlight animations.
/third_party/flutter/skia/modules/skottie/include/
DSkottie.h64 * Skottie resources -- e.g. images, fonts, nested animations.
69 * Load a generic resource (currently only nested animations) specified by |path| + |name|,
202 // animations using layer blend modes.
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Ddrawer_header.dart60 /// The duration for animations of the [decoration].
63 /// The curve for animations of the [decoration].
Dscrollbar.dart86 // On iOS, stop all local animations. CupertinoScrollbar has its own
87 // animations.
Dfloating_action_button_location.dart22 /// motion, entrance, and exit animations.
313 /// Provider of animations to move the [FloatingActionButton] between [FloatingActionButtonLocation…
362 /// you could join animations that pass each other:
367 /// // The animations will cross at value 0, and the train will return to 1.0.
472 /// to combine multiple animations.
Dtoggleable.dart16 /// A base class for material style toggleable controls with toggle animations.
105 /// The [TickerProvider] for the [AnimationController]s that run the animations.
124 /// [position] animations to animate the visual appearance of the control to
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/android/
DSplashScreen.java28 * a stateful splash view, such as one with animations, should take care to migrate that
65 * transition progress, restart any animations, and then trigger its completion callback
/third_party/node/test/fixtures/wpt/resources/
DSVGAnimationTestCase-testharness.js36 // Inspired by Layoutests/animations/animation-test-helpers.js
88 // Pause animations, we'll drive them manually.
/third_party/flutter/flutter/dev/tools/vitool/
DREADME.md6 design animations as created by the Google Material Design team, and is not
/third_party/gstreamer/gstplugins_good/ext/gdk_pixbuf/
DMakefile.am3 # gstgdkanimation.[ch] - GdkPixbuf animations decode everything from the start,
/third_party/protobuf/objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/
DLaunchScreen.storyboard18 <animations/>
/third_party/flutter/flutter/packages/flutter/lib/src/semantics/
Dbinding.dart45 /// The platform is requesting that animations be disabled or simplified.
/third_party/flutter/skia/modules/sksg/include/
DSkSGScene.h60 * Provides high-level mehods for driving rendering and animations.

123456