kopo 0.1.3 copy "kopo: ^0.1.3" to clipboard
kopo: ^0.1.3 copied to clipboard

Kopo package can search for Korean postal addresses using the following postal code search services. If necessary, you can use the English address by clicking the View English button.

find Korea Postal address

Getting Started #

You should ensure that you add the router as a dependency in your flutter project.

dependencies:
 kopo: "^0.1.3"
copied to clipboard

Setup #

iOS #

Opt-in to the embedded views preview by adding a boolean property to the app's Info.plist file with the key io.flutter.embedded_views_preview and the value YES.

<key>io.flutter.embedded_views_preview</key>
<true/>
copied to clipboard

Example #

import 'package:kopo/kopo.dart';

MaterialButton(
  child: Text('find Korea Postal address'),
  onPressed: () async {
    KopoModel model = await Navigator.push(
      context,
      CupertinoPageRoute(
        builder: (context) => Kopo(),
      ),
    );
  },
),
copied to clipboard
16
likes
25
points
29
downloads

Publisher

unverified uploader

Weekly Downloads

2024.10.02 - 2025.04.16

Kopo package can search for Korean postal addresses using the following postal code search services. If necessary, you can use the English address by clicking the View English button.

Homepage

License

MIT (license)

Dependencies

flutter, webview_flutter

More

Packages that depend on kopo