flutter_mdetect 0.0.3 copy "flutter_mdetect: ^0.0.3" to clipboard
flutter_mdetect: ^0.0.3 copied to clipboard

outdated

Detect Zawgyi Or Unicode of the phone. Support for both android and iOS.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'mytheme.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: MyTheme.defaultColor,
      ),
      home: MyHomePage(title: 'Detect Zawgyi and Unicode'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {

    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Text(MyTheme.mmText('နေကောင်းလား'))
      ),

    );
  }
}
15
likes
40
points
58
downloads

Publisher

unverified uploader

Weekly Downloads

Detect Zawgyi Or Unicode of the phone. Support for both android and iOS.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_mdetect