text stringlengths 1 474 |
|---|
height: 200, |
color: Colors.green, |
), |
)<code_end> |
<topic_end> |
<topic_start> |
Interactive example |
<code_start>import 'package:flutter/material.dart'; |
void main() => runApp(const MyApp()); |
class MyApp extends StatelessWidget { |
const MyApp({super.key}); |
@override |
Widget build(BuildContext context) { |
const appTitle = 'Opacity Demo'; |
return const MaterialApp( |
title: appTitle, |
home: MyHomePage(title: appTitle), |
); |
} |
} |
// The StatefulWidget's job is to take data and create a State class. |
// In this case, the widget takes a title, and creates a _MyHomePageState. |
class MyHomePage extends StatefulWidget { |
const MyHomePage({ |
super.key, |
required this.title, |
}); |
final String title; |
@override |
State<MyHomePage> createState() => _MyHomePageState(); |
} |
// The State class is responsible for two things: holding some data you can |
// update and building the UI using that data. |
class _MyHomePageState extends State<MyHomePage> { |
// Whether the green box should be visible |
bool _visible = true; |
@override |
Widget build(BuildContext context) { |
return Scaffold( |
appBar: AppBar( |
title: Text(widget.title), |
), |
body: Center( |
child: AnimatedOpacity( |
// If the widget is visible, animate to 0.0 (invisible). |
// If the widget is hidden, animate to 1.0 (fully visible). |
opacity: _visible ? 1.0 : 0.0, |
duration: const Duration(milliseconds: 500), |
// The green box must be a child of the AnimatedOpacity widget. |
child: Container( |
width: 200, |
height: 200, |
color: Colors.green, |
), |
), |
), |
floatingActionButton: FloatingActionButton( |
onPressed: () { |
// Call setState. This tells Flutter to rebuild the |
// UI with the changes. |
setState(() { |
_visible = !_visible; |
}); |
}, |
tooltip: 'Toggle Opacity', |
child: const Icon(Icons.flip), |
), |
); |
} |
}<code_end> |
<topic_end> |
<topic_start>Hero animations |
<topic_end> |
<topic_start>What you'll learn |
You’ve probably seen hero animations many times. For example, a screen displays |
a list of thumbnails representing items for sale. Selecting an item flies it to |
a new screen, containing more details and a “Buy” button. Flying an image from |
one screen to another is called a hero animation in Flutter, though the same |
motion is sometimes referred to as a shared element transition.You might want to watch this one-minute video introducing the Hero widget:This guide demonstrates how to build standard hero animations, and hero |
animations that transform the image from a circular shape to a square shape |
during flight.Examples: This guide provides examples of each hero animation style at |
the following links.New to Flutter? |
This page assumes you know how to create a layout |
using Flutter’s widgets. For more information, see |
Building Layouts in Flutter.Terminology: |
A Route describes a page or screen in a Flutter app.You can create this animation in Flutter with Hero widgets. |
As the hero animates from the source to the destination route, |
the destination route (minus the hero) fades into view. |
Typically, heroes are small parts of the UI, like images, |
that both routes have in common. From the user’s perspective |
the hero “flies” between the routes. This guide shows how |
to create the following hero animations:Standard hero animationsA standard hero animation flies the hero from one route to a new route, |
usually landing at a different location and with a different size.The following video (recorded at slow speed) shows a typical example. |
Tapping the flippers in the center of the route flies them to the |
upper left corner of a new, blue route, at a smaller size. |
Tapping the flippers in the blue route (or using the device’s |
back-to-previous-route gesture) flies the flippers back to |
the original route.Radial hero animationsIn radial hero animation, as the hero flies between routes |
its shape appears to change from circular to rectangular.The following video (recorded at slow speed), |
shows an example of a radial hero animation. At the start, a |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.