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

Converts `DateTime` to lowercase date strings, e.g., `07/09/2024` → `07/sep/2024`.

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:jit_flutter_app_helper/jit_flutter_app_helper.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';
  final _jitFlutterAppHelperPlugin = JitFlutterAppHelper();
  String ans = '';

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.
    try {
      platformVersion = await _jitFlutterAppHelperPlugin.getPlatformVersion() ??
          'Unknown platform version';
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.

    // pass the Date of DateTime format as an argument in method formatDate
    // the method formatDate will return a String of date like 07/sep/2024
    String date = _jitFlutterAppHelperPlugin.formatDate(DateTime.now());
    if (!mounted) return;

    setState(() {
      _platformVersion = platformVersion;
      ans = date;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Column(
            children: [
              Text('Running on: $_platformVersion\n'),
              Text(ans),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
0
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

Converts `DateTime` to lowercase date strings, e.g., `07/09/2024` → `07/sep/2024`.

Repository (GitLab)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_web_plugins, intl, plugin_platform_interface, web

More

Packages that depend on jit_flutter_app_helper

Packages that implement jit_flutter_app_helper