flutter_typeahead2 3.2.1
flutter_typeahead2: ^3.2.1 copied to clipboard
A highly customizable typeahead (autocomplete) text input field for Flutter
example/lib/main.dart
import 'dart:io' show Platform;
import 'package:flutter/material.dart';
import 'package:example/material_app.dart';
import 'package:example/cupertino_app.dart';
void main() => runApp(Platform.isIOS ? MyCupertinoApp() : MyMaterialApp());
copied to clipboard