A Beautiful and Simple Searchbar Widget with Animation Transition

AnimatedSearchBar

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:

dependencies:  
 ... animated_search_bar: "^latest_version"

Import it:

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

Download Details:

Author: ukieTux

Source Code: https://github.com/ukieTux/animated_search_bar

#flutter #dart #mobile-apps

A Beautiful and Simple Searchbar Widget with Animation Transition
3.05 GEEK