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

outdated

A new Flutter package that helps developers to add a beautiful live timer at snackbar to their Flutter app.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Timer Snackbar',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: const HomePage());
  }
}

class HomePage extends StatelessWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Timer Snackbar"),
      ),
      body: Builder(
        builder: (context) {
          return Center(
            child: ElevatedButton(
              child:const  Padding(
                  padding: EdgeInsets.all(8.0),
                  child: Text('Show Snackbar', textScaleFactor: 1.2)),
              style: ElevatedButton.styleFrom(
                  shape: RoundedRectangleBorder(
                      borderRadius: BorderRadius.circular(8.0))),
              onPressed: () => timerSnackbar(
                context: context,
                contentText: "A snackbar with live timer.",
                afterTimeExecute: () => print("Operation Execute."),
                second: 5,
              ),
            ),
          );
        },
      ),
    );
  }
}
25
likes
0
points
74
downloads

Publisher

verified publisheralgoramming.com

Weekly Downloads

A new Flutter package that helps developers to add a beautiful live timer at snackbar to their Flutter app.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on timer_snackbar