kpostal 0.1.1 copy "kpostal: ^0.1.1" to clipboard
kpostal: ^0.1.1 copied to clipboard

outdated

Kpostal package can search for Korean postal addresses using Kakao postcode service. This package is inspired by Kopo package that is discontinued.

About kpostal #

Kpostal package can search for Korean postal addresses using Kakao postcode service. This package is inspired by Kopo package that is discontinued.

Support Null-Safety!

Getting Started #

Add kpostal to your pubspec.yaml file:

dependencies:
  kpostal: ^0.1.1

Setup #

🧑🏻‍💻 Nothing to do! Both iOS and Android.

Example #

import 'package:kpostal/kpostal.dart';

// Use callback.
TextButton(
    onPressed: () async {
        await Navigator.push(context, MaterialPageRoute(
            builder: (_) => KpostalView(
                callback: (Kpostal result) {
                    print(reuslt.address);
                }, 
            ),
        );
    },
    child: Text('Search!'),
),

// Not use callback.
TextButton(
    onPressed: () async {
        Kpostal result = await Navigator.push(context, MaterialPageRoute(builder: (_) => KpostalView()));
        print(result.address);
    },
    child: Text('Search!'),
),
66
likes
0
pub points
90%
popularity

Publisher

verified publishertykan.dev

Kpostal package can search for Korean postal addresses using Kakao postcode service. This package is inspired by Kopo package that is discontinued.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, webview_flutter

More

Packages that depend on kpostal