animated_search 0.0.2 animated_search: ^0.0.2 copied to clipboard
A customizable animated search widget for Flutter that can be easily integrated into any app.
import 'package:animated_search/animated_search.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
actions: const [
AnimatedSearch(
iconColor: Colors.red,
cursorColor: Colors.black,
decoration: InputDecoration(
hintText: 'hello',
hintStyle: TextStyle(color: Colors.yellow)
),
)
],
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: const [
AnimatedSearch(
iconColor: Colors.red,
cursorColor: Colors.black,
)
],
),
),// This trailing comma makes auto-formatting nicer for build methods.
);
}
}