import 'package:krill_to_lotin/krill_to_lotin.dart';

Usage

install the package into your program and then use the package as described in the documentation

class KrillToLatin extends StatefulWidget {
  @override
  State<KrillToLatin> createState() => _KrillToLatinState();
}

class _KrillToLatinState extends State<KrillToLatin> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Text(Translit().convertKrillToLatin(String),),
      ),
    );
  }
}

Example

There are a number of properties that you can modify:

  • height
  • width
  • title
  • subtitle
  • gradient (color1 and color2)

class KrillToLatin extends StatefulWidget {
  @override
  State<KrillToLatin> createState() => _KrillToLatinState();
}

class _KrillToLatinState extends State<KrillToLatin> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Text(Translit().convertKrillToLatin(String),),
      ),
    );
  }
}

Libraries

krill_to_lotin