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

dart_joda was started to provide Dart with the comfortable time processing experience experienced in joda-time (=java.time).

example/lib/main.dart

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

import 'package:flutter/services.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const SizedBox(),
      ),
    );
  }
}
1
likes
120
points
15
downloads

Publisher

unverified uploader

Weekly Downloads

dart_joda was started to provide Dart with the comfortable time processing experience experienced in joda-time (=java.time).

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on dart_joda

Packages that implement dart_joda