loading_btn 1.0.3 loading_btn: ^1.0.3 copied to clipboard
An animated loading button package that allows you to create beautiful loadding button with lots of customized properties.
import 'package:example/home_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
home: HomePage(),
);
}
}