expandable_search_bar 0.0.2 copy "expandable_search_bar: ^0.0.2" to clipboard
expandable_search_bar: ^0.0.2 copied to clipboard

A beautiful animated search bar for flutter. You can customize it as mush as you want.

example/lib/example.dart

import 'package:flutter/material.dart';
import 'package:expandable_search_bar/expandable_search_bar.dart';

class ExampleSearchBar extends StatelessWidget {
  ExampleSearchBar({Key? key}) : super(key: key);

  final TextEditingController? editTextController = TextEditingController();
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: ExpandableSearchBar(
          onTap: () => print(editTextController!.text.toString()),
          hintText: "Search something",
          editTextController: editTextController,
        ),
      ),
    );
  }
}
41
likes
160
pub points
84%
popularity

Publisher

verified publishermr-tz-dev.blogspot.com

A beautiful animated search bar for flutter. You can customize it as mush as you want.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on expandable_search_bar