git_stamp 1.7.0 copy "git_stamp: ^1.7.0" to clipboard
git_stamp: ^1.7.0 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(
      debugShowCheckedModeBanner: false,
      home: ExamplePage(),
      theme: ThemeData(useMaterial3: true),
      darkTheme: ThemeData.dark(useMaterial3: true),
      themeMode: ThemeMode.system,
    );
  }
}

class ExamplePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Example Page'),
        actions: [
          IconButton(
            onPressed: () => showGitStampPage(context: context),
            icon: const Icon(Icons.navigate_next),
          ),
        ],
      ),
      body: Center(child: Text('Aron Soft sp. z o.o.')),
    );
  }
}
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, intl

More

Packages that depend on git_stamp