This commit is contained in:
Nathan Anderson 2024-05-02 15:00:20 -06:00
parent 73bf1500f9
commit c0d16da33c

View File

@ -20,6 +20,83 @@ class MyApp extends StatelessWidget {
} }
} }
class LikeButtonDecorator extends StatelessWidget {
const LikeButtonDecorator({super.key, required this.child, required this.height, required this.width});
final Widget child;
final double height, width;
@override
Widget build(BuildContext context) {
return SizedBox(
height: height,
width: width,
child: Stack(
children: [
Center(child: child),
Padding(
padding: const EdgeInsets.all(2.0),
child: Align(
alignment: Alignment.topRight,
child: Container(
padding: const EdgeInsets.all(3.0),
decoration: const BoxDecoration(shape: BoxShape.circle, color: Colors.blue),
child: const Icon(Icons.thumb_up, color: Colors.white, size: 16),
),
),
),
],
),
);
}
}
class AnimatedPulsingBorderDecorator extends StatefulWidget {
const AnimatedPulsingBorderDecorator({super.key, required this.child});
final Widget child;
@override
State<StatefulWidget> createState() => AnimatedPulsingBorderDecoratorState();
}
class AnimatedPulsingBorderDecoratorState extends State<AnimatedPulsingBorderDecorator>
with SingleTickerProviderStateMixin {
late final AnimationController controller;
late final Animation<double> paddingAnimation;
@override
void initState() {
super.initState();
controller = AnimationController(
duration: const Duration(milliseconds: 750),
vsync: this,
);
paddingAnimation = Tween<double>(begin: 0.0, end: 3.0).animate(controller);
controller.repeat(reverse: true);
}
@override
void dispose() {
super.dispose();
controller.dispose();
}
@override
Widget build(BuildContext context) {
return AnimatedBuilder(
builder: (context, _) {
return Container(
padding: EdgeInsets.all(paddingAnimation.value),
decoration: BoxDecoration(color: Colors.amber, borderRadius: BorderRadius.circular(15.0)),
child: widget.child,
);
},
animation: paddingAnimation,
);
}
}
class MyHomePage extends StatefulWidget { class MyHomePage extends StatefulWidget {
const MyHomePage({super.key}); const MyHomePage({super.key});
@ -33,19 +110,29 @@ class _MyHomePageState extends State<MyHomePage> {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary, backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: const Text('Abstract Factory'), title: const Text('Decorator'),
), ),
body: Center( body: Center(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[ children: <Widget>[
const Text( const Text(
'You have pushed the button this many times:', 'Decorators!!',
),
Text(
'some text',
style: Theme.of(context).textTheme.headlineMedium,
), ),
LikeButtonDecorator(
height: 30,
width: 160,
child: ElevatedButton(
onPressed: () {},
child: const SizedBox(
height: 30,
width: 160,
child: Center(child: Text('Like Me!')),
),
)),
const SizedBox(height: 20),
AnimatedPulsingBorderDecorator(
child: ElevatedButton(onPressed: () {}, child: const Text('Pulsing goodness!!')))
], ],
), ),
), ),