mmdate 1.0.22 copy "mmdate: ^1.0.22" to clipboard
mmdate: ^1.0.22 copied to clipboard

Algorithm, Program and Calculation of Myanmar Date

example/mmdate_example.dart

import 'package:flutter/material.dart';
import '../lib/src/mmdate.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    MMDate mmdate = MMDate();
    String year = mmdate.year();
    String date = mmdate.date();
    return MaterialApp(
      title: 'Material App',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Material App Bar'),
        ),
        body: Center(
          child: Container(
            child: Column(
              children: <Widget>[
                Text('Myanar $year'),
                Text('Myanar $date'),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

Algorithm, Program and Calculation of Myanmar Date

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on mmdate