nakjemmy / animated_search_bar

This is Flutter Plugin to create Simple and Beautiful Searchbar with Animation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AnimatedSearchBar pub package License: MIT Build Status

A Beautiful and Simple SearchBar widget with animation transition. It can be fully customized with label, labelStyle, searchDecoration, etc. It also maintains onChange state. Farmers Market Finder Demo Farmers Market Finder Demo

Getting Started

In the pubspec.yaml of your flutter project, add the following dependency:

... animated_search_bar: "^latest_version"
``` Import it:
```dart import 'package:animated_search_bar/animated_search_bar.dart';

Usage Examples

String searchText="";

AnimatedSearchBar(
 label: "Search Something Here",
 onChanged: (value) {
   print("value on Change");
   setState(() {
     searchText = value;
   });
}, ),

Available Parameters

Param isRequired
String label No
Function(String) onChanged No
TextStyle labelStyle No
InputDecoration searchDecoration No
int animationDuration in milliseconds No
TextStyle searchStyle No
Color cursorColor No
Duration duration , debouncer duration default 300ms No

Buy me coffee if you love my works ☕️

ko-fi      buymeacoffe      paypal



About

This is Flutter Plugin to create Simple and Beautiful Searchbar with Animation

License:MIT License


Languages

Language:Dart 85.0%Language:Ruby 10.5%Language:Swift 3.1%Language:Kotlin 1.1%Language:Objective-C 0.3%