korean_romanization_converter 0.0.1 copy "korean_romanization_converter: ^0.0.1" to clipboard
korean_romanization_converter: ^0.0.1 copied to clipboard

korean romanization converter

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:korean_romanization_converter/korean_romanization_converter.dart';

void main() {}

class App extends StatefulWidget {
  const App({super.key});

  @override
  State<App> createState() => _AppState();
}

class _AppState extends State<App> {
  final converter = KoreanRomanizationConverter();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text(converter.romanize('안녕하세요?')),
        ),
      ),
    );
  }
}
1
likes
130
points
25
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

korean romanization converter

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on korean_romanization_converter