search_bar_animated 1.0.1 search_bar_animated: ^1.0.1 copied to clipboard
A flutter package that has an animated search bar animation transformation.
import 'package:animated_search_bar/home_page.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',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home:const HomePage(),
);
}
}