No description https://updatify.io
Find a file
2026-02-22 22:20:46 +02:00
example Update to use api 2026-02-22 22:20:46 +02:00
lib Update to use api 2026-02-22 22:20:46 +02:00
.gitignore Initial commit 2025-07-01 11:04:01 +03:00
.metadata Initial commit 2025-07-01 11:04:01 +03:00
analysis_options.yaml Initial commit 2025-07-01 11:04:01 +03:00
CHANGELOG.md Initial commit 2025-07-01 11:04:01 +03:00
LICENSE Initial commit 2025-07-01 11:04:01 +03:00
pubspec.yaml Update to use api 2026-02-22 22:20:46 +02:00
README.md Move README.md text from example to package file 2025-07-01 16:43:24 +03:00

UpdatifyWidget is a Flutter widget designed to seamlessly integrate with the Updatify service. It allows to display recent updates, announcements, or notifications from projects directly within SaaS applications. By leveraging the Updatify API, the widget provides a user-friendly interface for showcasing project updates, enhancing user engagement and communication.

For more info visit the Updatify website.

Usage example

import 'package:updatify_flutter/updatify_flutter.dart';

void main() {
  const projectId = 'your_project_id'; // Replace with your actual project ID
  runApp(
    MaterialApp(
      home: Scaffold(
        body: Center(
          child: Builder(
            builder: (context) => ElevatedButton(
              onPressed: () => showUpdatifyDialog(context, projectId: projectId),
              child: const Text('Recent updates'),
            )
          ),
        ),
      ),
    ),
  );
}