expansion_widget 0.0.1-nullsafety.0 expansion_widget: ^0.0.1-nullsafety.0 copied to clipboard
An edited version of Expansion Tile that allows you customize tile widget and animation.
import 'package:expansion_widget/expansion_widget.dart';
import 'package:flutter/material.dart';
import 'dart:math' as math;
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: HomePage(),
);
}
}
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
bool? _expanded2;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Flutter Expansion Widget Demo')),
body: Column(
children: [
Card(
color: Colors.white,
child: ExpansionWidget(
initiallyExpanded: true,
titleBuilder:
(double animationValue, _, bool isExpaned, toogleFunction) {
return InkWell(
onTap: () => toogleFunction(animated: true),
child: Padding(
padding: EdgeInsets.all(8),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Expanded(child: Text('Expansion Widget Title 1')),
Transform.rotate(
angle: math.pi * animationValue / 2,
child: Icon(Icons.arrow_right, size: 40),
alignment: Alignment.center,
)
],
),
));
},
content: Container(
width: double.infinity,
color: Colors.grey.shade100,
padding: EdgeInsets.all(20),
child: Text('Expaned Content'),
)),
),
ExpansionWidget(
onSaveState: (value) => _expanded2 = value,
onRestoreState: () => _expanded2,
titleBuilder:
(_, double easeInValue, bool isExpaned, toogleFunction) {
return Material(
color:
Color.lerp(Colors.blue, Colors.lightGreen, easeInValue),
child: InkWell(
onTap: () => toogleFunction(animated: true),
child: Padding(
padding: EdgeInsets.all(8),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Expanded(child: Text('Title 2')),
Transform.scale(
scale: easeInValue,
child: Icon(Icons.tag_faces,
size: 40,
color: Color.lerp(Colors.black,
Colors.white, easeInValue))),
Container(
color: Colors.yellow,
height: 2,
width: easeInValue * 50,
),
Transform.rotate(
angle: math.pi * (easeInValue + 0.5),
child: Icon(Icons.arrow_back,
size: 40,
color: Color.lerp(
Colors.white, Colors.black, easeInValue)),
alignment: Alignment.center,
)
],
),
)),
);
},
content: Container(
width: double.infinity,
color: Colors.lightGreen,
padding: EdgeInsets.all(20),
child: Text('Expaned Content'),
)),
ElevatedButton(
onPressed: () {
setState(() {
_expanded2 = !(_expanded2 ?? false);
});
},
child: Text('Toogle'))
],
),
);
}
}