animated_loading_button 1.0.0 animated_loading_button: ^1.0.0 copied to clipboard
A new flutter button with built-in animations, customizable design and async callback.
import 'package:animated_loading_button/animated_loading_button.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const ExampleScreen(),
);
}
}
class ExampleScreen extends StatelessWidget {
const ExampleScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
AnimatedLoadingButton<void>.iconRotation(
buttonText: const Text('Login'),
buttonIcon: const Icon(Icons.logout_outlined),
onPress: onPress,
onAsyncCallFinished: (value) {
print('Login successfull');
},
),
const SizedBox(
height: 20,
),
AnimatedLoadingButton<void>.colorChangingButton(
buttonChild: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: const [Icon(Icons.login), Text('Login')],
),
colors: [
Colors.blue[400]!,
Colors.blue[800]!,
Colors.blue[900]!,
],
onPress: onPress,
onAsyncCallFinished: (value) {},
),
const SizedBox(
height: 20,
),
AnimatedLoadingButton<void>.fadingAnimation(
buttonChild: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: const [Icon(Icons.login), Text('Login')],
),
onPress: onPress,
onAsyncCallFinished: (value) {},
),
const SizedBox(
height: 20,
),
AnimatedLoadingButton<void>.progressIndicator(
buttonChild: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: const [Icon(Icons.login), Text('Login')],
),
onPress: onPress,
onAsyncCallFinished: (value) {},
),
],
),
),
);
}
Future<void> onPress() async {
await Future.delayed(
const Duration(
milliseconds: 4000,
),
);
}
}