git_stamp 1.0.1 copy "git_stamp: ^1.0.1" to clipboard
git_stamp: ^1.0.1 copied to clipboard

A tool to generate a git history that you can see when you run the application.

example/lib/main.dart

import 'package:example/git_stamp/git_stamp_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(ExampleApp());
}

class ExampleApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: ExamplePage(),
    );
  }
}

class ExamplePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Example Page'),
      ),
      body: Center(
        child: IconButton(
          onPressed: () => showGitStampPage(context: context),
          icon: const Icon(Icons.book),
        ),
      ),
    );
  }
}
43
likes
0
pub points
42%
popularity

Publisher

verified publisheraroncode.com

A tool to generate a git history that you can see when you run the application.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on git_stamp