FLUTTER ECOSYSTEM

SalehTZ/expandable_search_bar

一個漂亮的 Flutter 動畫搜尋欄套件。

可展開的搜尋欄 專案封面
Stars
10
Forks
1
最近推送(UTC)
2022年6月10日
專案狀態
未封存
Alex Talebi GitHub avatar
GITHUB User

Alex Talebi ↗

Love android & Flutter 💙. Flutter Engineer @NewElectron let's connect.

@NewElectronEarth官方網站 ↗
語言Dart

技術主題

此儲存庫發佈的套件

使用的依賴

依賴清單 3 項
  • flutter{"sdk":"flutter"}
  • flutter_test開發依賴{"sdk":"flutter"}
  • flutter_lints開發依賴^2.0.0

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

Pub

Animated Search Bar

Animated Search Bar package lets you add a beautiful search bar to your Flutter app.

Installation

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  expandable_search_bar: ^latest_version
  1. Import the package and use it in your Flutter App.
import 'package:expandable_search_bar/expandable_search_bar.dart';

Screenshots

Preview1

Preview2

⚠Note: As you see in the screenshots this package is only available on Mouse devices (Web, Windows, macOS, Linux), but I'm working on a solution to add mobile devices too.

Example

There are a number of properties that you can modify. Customize them as you want:

  • width
  • text
  • gutter (space between TextField and Button)
  • background color
  • icon color
  • icon background color
  • shadow under the bar
  • shadow under the button
  • animation duration (also for TextField)
  • animation curve (also for TextField)
class AnimatedBar extends StatelessWidget {  
  const AnimatedBar({
    Key? key,
  }) : super(key: key);

  final TextEditingController? searchController 
  = TextEditingController();

  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: Center(  
        child: const AnimatedSearchBar(  
          ExpandableSearchBar(
            onTap: () {
              print(
                searchController!.text.toString(),
              );
            },
            hintText: "search something",
            editTextController: searchController,
          ),
        ),  
      ),  
    );  
  }  
}
https://user-images.githubusercontent.com/31685655/172936571-678e17bd-d4b8-4227-9396-9dfbc52abe67.png

Next Goals

  • [ ] Support mobile devices (Unfortunately it's only available for "Mouse" devices).

  • [ ] Change font style and color for text.

Support

You can support me by following me on https://img.shields.io/badge/Instagram-E4405F?style=flat-square&logo=instagram&logoColor=white and GitHub https://img.shields.io/github/followers/SalehTZ?logo=github&style=flat-square

And also don't forget to star this package on GitHub https://img.shields.io/github/stars/SalehTZ/expandable_search_bar?logo=github&style=flat-square