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

Keep your users up to date with the latest changes in your app.

Revisions SDK for Flutter #

therevisions.app | Console | Pub

  • Console: The Revisions console provides a notion-like experience for publishing your release notes
  • Universal compatibility: Written in Dart, Revisions is compatible with Android, iOS, Web, macOS, Windows, Linux, and IoT
  • Free: Revisions is free while in beta
Revisions Logo

3-Minute Quick Start #

1. Create an account and project #

Start by visiting the Revisions Console: Revisions Console. Create your free account using GitHub.

Then create a project with a descriptive name.

2. Add Revisions to your pubspec.yaml #

$ flutter pub add revisions

3. Show the timeline #

import 'package:revisions/revisions.dart';

Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: const RevisionsTimeline(domain: 'your-domain.therevisions.app'), // Get your domain from the Revisions Console
);