Last updated:
0 purchases
revisions
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
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
copied to clipboard
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
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.