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

discontinued

A Flutter package to create a search bar with suggestions. It provides suggestions to the user when they click the search field.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        
        primarySwatch: Colors.blue,
        
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {

    return Scaffold(
      body: SearchBar(
        hintText: "Search",
        prefixIcon: Icon(Icons.search),
        suffixIcon: Icon(Icons.tune),
        suggestions: [
          "String 1",
          "String 2",
          "String 3",
          "String 4"
        ],
        body: Center(child: Text("Hello World")),
      )
    );
  }
}
10
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A Flutter package to create a search bar with suggestions. It provides suggestions to the user when they click the search field.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on suggestion_search_bar