once 1.1.1 copy "once: ^1.1.1" to clipboard
once: ^1.1.1 copied to clipboard

outdated

Want to run a piece of code once periodically (Daily - Weekly - Monthly - On new version - Any period)? We cover your back.

example/lib/main.dart

import 'dart:math';

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

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  String currentValue = 'Hello World';

  @override
  void initState() {
    Once.runOnce(
      'my-app-widget',
      callback: () => set('Once Started'),
    );
    Once.runOnEveryNewVersion(
      callback: () {
        /* What's new in 2.3.2 version? dialog */
      },
      fallback: () {
        /* Navigate to new screen */
      },
    );
    super.initState();
  }

  void set(String newOnce) {
    setState(
      () {
        currentValue = newOnce + ' ${Random().nextInt(100)}';
      },
    );
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primaryColor: Colors.deepPurple,
        primarySwatch: Colors.deepPurple,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Once Made with ❤️'),
        ),
        body: Center(
          child: SingleChildScrollView(
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              children: [
                ElevatedButton(
                  child: const Text("Run On New Version"),
                  onPressed: () {
                    Once.runOnEveryNewVersion(
                      callback: () => set("Hello New Version"),
                      fallback: () => set('Okay its not new version'),
                    );
                  },
                ),
                ElevatedButton(
                  child: const Text("Run Hourly"),
                  onPressed: () {
                    Once.runHourly(
                      "Hourly",
                      callback: () => set("Hello Hourly"),
                    );
                  },
                ),
                ElevatedButton(
                  child: const Text("Run Every 12 Hour"),
                  onPressed: () {
                    Once.runEvery12Hours(
                      "12 Hour",
                      callback: () => set("Hello 12 Hour"),
                    );
                  },
                ),
                ElevatedButton(
                  child: const Text("Run Daily"),
                  onPressed: () {
                    Once.runDaily(
                      "Daily",
                      callback: () => set("Hello Daily"),
                    );
                  },
                ),
                ElevatedButton(
                  child: const Text("Run On New Month"),
                  onPressed: () {
                    Once.runOnNewMonth(
                      "New Month",
                      callback: () => set("Hello New Month"),
                      fallback: () => set("Hello New Month Fallback"),
                    );
                  },
                ),
                ElevatedButton(
                  child: const Text("Run Monthly"),
                  onPressed: () {
                    Once.runMonthly("Monthly x",
                        callback: () => set("Hello Monthly"),
                        fallback: () => set('Hello Monthly Fallback'));
                  },
                ),
                ElevatedButton(
                  child: const Text("Run Evert 5 Sec"),
                  onPressed: () {
                    Once.runCustom(
                      "x",
                      duration: const Duration(seconds: 5),
                      callback: () => set("Hello Custom"),
                    );
                  },
                ),
                const SizedBox(
                  height: 22,
                ),
                Text(
                  currentValue,
                  style: const TextStyle(
                    fontSize: 28,
                  ),
                  textAlign: TextAlign.center,
                )
              ],
            ),
          ),
        ),
      ),
    );
  }
}
192
likes
0
pub points
90%
popularity

Publisher

verified publishermosoliman.tech

Want to run a piece of code once periodically (Daily - Weekly - Monthly - On new version - Any period)? We cover your back.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

package_info_plus, shared_preferences

More

Packages that depend on once