flutter_time 1.0.0 copy "flutter_time: ^1.0.0" to clipboard
flutter_time: ^1.0.0 copied to clipboard

Plugin to handle and get time info.

example/lib/main.dart

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

import 'package:flutter_time/flutter_time.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  bool _autoTimeIsEnable = false;

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> autoTimeIsEnableState() async {
    bool autoTimeIsEnable;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      autoTimeIsEnable = await FlutterTime.autoTimeIsEnable;
    } on Exception {
      autoTimeIsEnable = false;
    }

    // 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.
    if (!mounted) return;

    setState(() {
      _autoTimeIsEnable = autoTimeIsEnable;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Auto time is enable: $_autoTimeIsEnable\n'),
        ),
      ),
    );
  }
}
1
likes
30
pub points
36%
popularity

Publisher

unverified uploader

Plugin to handle and get time info.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_time