free_place_search 1.0.5 copy "free_place_search: ^1.0.5" to clipboard
free_place_search: ^1.0.5 copied to clipboard

Free Place Search using Photon API

Free Place Search

Will be Chosen someday as a Flutter Favorite by the Flutter Ecosystem Committee

Pub.dev Badge GitHub Build Badge Code Coverage Badge Gitter Badge Effective Dart Badge MIT License Badge Flutter Platform Badge


Free Place Search #

Free Place Search using Photon Api

portfolio_view portfolio_view

Usage #


class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            PlaceAutocomplete.widget(onDone: (e) {}),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: () => PlaceAutocomplete.show(
            onDone: (e) {
              Navigator.pop(context);
            },
            context: context),
        tooltip: 'Increment',
        child: const Icon(Icons.add),
      ),
    );
  }
}

5
likes
120
pub points
79%
popularity
screenshot

Publisher

unverified uploader

Free Place Search using Photon API

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dio, flutter

More

Packages that depend on free_place_search