kpostal 0.1.3 kpostal: ^0.1.3 copied to clipboard
Kpostal package can search for Korean postal addresses using Kakao postcode service. This package is inspired by Kopo package that is discontinued.
import 'package:flutter/material.dart';
import 'package:kpostal/kpostal.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Kpostal Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Kpostal Example'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
String postCode = '-';
String address = '-';
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Container(
alignment: Alignment.center,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
TextButton(
onPressed: () async {
await Navigator.push(
context,
MaterialPageRoute(
builder: (_) => KpostalView(
callback: (Kpostal result) {
setState(() {
this.postCode = result.postCode;
this.address = result.address;
});
},
),
),
);
},
style: ButtonStyle(
backgroundColor:
MaterialStateProperty.all<Color>(Colors.blue)),
child: Text(
'Search Address',
style: TextStyle(color: Colors.white),
),
),
Container(
padding: EdgeInsets.all(40.0),
child: Column(
children: [
Text('postCode',
style: TextStyle(fontWeight: FontWeight.bold)),
Text('result: ${this.postCode}'),
Text('address',
style: TextStyle(fontWeight: FontWeight.bold)),
Text('result: ${this.address}'),
],
),
)
],
),
),
);
}
}