entry 0.0.5 entry: ^0.0.5 copied to clipboard
Make your widgets come to life – Entry lets you simply animate a widget into a visible state. One widget to animate the opacity, scale, position and angle.
import 'dart:math';
import 'package:entry/entry.dart';
import 'package:flutter/material.dart';
void main() => runApp(ExampleApp());
/// Example app widget
class ExampleApp extends StatelessWidget {
/// List of the tabs titles
final tabs = [
"Constructors",
"Entry combinations",
"Staggered builds",
"Randomization"
];
/// Random instance
final random = Random();
/// Custom card used for every example
Widget card(String label) => Card(
child: Container(
color: Colors.grey[100],
width: 128,
height: 128,
child: Center(
child: Text(
label,
style: TextStyle(fontSize: 16),
)),
));
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: SafeArea(
child: DefaultTabController(
length: tabs.length,
child: Scaffold(
backgroundColor: Colors.white,
appBar: TabBar(
isScrollable: true,
tabs: [
for (var tab in tabs)
Padding(
padding: EdgeInsets.all(8),
child: Text(
tab,
style: TextStyle(color: Colors.black),
))
],
),
body: TabBarView(
children: [
// Constructors
Center(
child: Wrap(
alignment: WrapAlignment.center,
runAlignment: WrapAlignment.center,
children: [
Entry.all(
//delay: Duration(seconds: 1),
child: card("Entry.all()")),
Entry.opacity(
//delay: Duration(seconds: 1),
child: card("Entry.opacity()")),
Entry.scale(
//delay: Duration(seconds: 1),
child: card("Entry.scale()")),
Entry.offset(
//delay: Duration(seconds: 1),
child: card("Entry.offset()")),
]),
),
// Entry combinations
Center(
child: Wrap(children: [
// Example 1
Entry(
xOffset: -1000,
scale: 20,
delay: Duration(milliseconds: 300),
duration: Duration(milliseconds: 700),
curve: Curves.ease,
child: Entry(
opacity: .5,
angle: 3.1415,
scale: .5,
delay: Duration(milliseconds: 900),
duration: Duration(milliseconds: 500),
curve: Curves.decelerate,
child: card("Example 1"),
)),
// Example 2
Entry(
delay: Duration(milliseconds: 300),
duration: Duration(milliseconds: 300),
opacity: 0,
yOffset: -1000,
curve: Curves.easeInOutCubic,
child: Entry(
delay: Duration(milliseconds: 450),
duration: Duration(milliseconds: 600),
curve: Curves.decelerate,
scale: 0.5,
angle: 1.5707,
child: card("Example 2"),
)),
// Example 3
Entry(
delay: Duration(milliseconds: 300),
duration: Duration(milliseconds: 700),
yOffset: 1000,
xOffset: 1000,
angle: -4.1415,
curve: Curves.fastOutSlowIn,
child: Entry(
delay: Duration(milliseconds: 1000),
duration: Duration(milliseconds: 250),
curve: Curves.easeOut,
opacity: 0.5,
scale: 0.5,
child: card("Example 3"),
)),
]),
),
// Staggered builds
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: GridView.builder(
itemCount: 100,
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3),
itemBuilder: (context, index) => Entry.all(
delay: Duration(milliseconds: (200 * (index % 3))),
child: card("Card n°$index")),
),
),
// Randomization
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: GridView.builder(
itemCount: 100,
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3),
itemBuilder: (context, index) => Entry.all(
delay: Duration(milliseconds: random.nextInt(300)),
child: card("Card n°$index")),
),
),
],
),
floatingActionButton: Builder(builder: (context) {
return FloatingActionButton(
child: Icon(Icons.refresh),
onPressed: () async {
// Re-initializes the whole page to show the animations again
Navigator.of(context).pop();
Navigator.push(
context,
PageRouteBuilder(
pageBuilder: (_, __, ___) => ExampleApp(),
transitionDuration: Duration.zero));
});
}),
),
),
),
);
}
}