anim_search_app_bar

Creator: coderz1093

Last updated:

0 purchases

anim_search_app_bar Image
anim_search_app_bar Images

Languages

Categories

Add to Cart

Description:

anim search app bar

anim_search_app_bar #
An animated SearchAppBar Widget, to be used with Flutter.
Website example >> https://animsearchappbar.mustafaturkmen.dev

Usage #
It has a very easy to use.
add this line to pubspec.yaml

dependencies:
anim_search_app_bar: ^1.0.3

copied to clipboard
import package

import 'package:anim_search_app_bar/anim_search_app_bar.dart';

copied to clipboard
const AnimSearchAppBar(
cancelButtonText: "Cancel",
hintText: 'Search',
),
copied to clipboard
Complete Example #
class SearchScreen extends StatelessWidget {
final TextEditingController searchController = TextEditingController();

SearchScreen({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
children: [
AnimSearchAppBar(
cancelButtonText: "Cancel",
hintText: 'Search for Neighborhood, Street or avenue',
cSearch: searchController,
appBar: const PBAppBar(
title: 'Search',
),
),
const Expanded(child: SearchView()),
],
),
);
}
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.