No description
https://updatify.io
| example | ||
| lib | ||
| .gitignore | ||
| .metadata | ||
| analysis_options.yaml | ||
| CHANGELOG.md | ||
| LICENSE | ||
| pubspec.yaml | ||
| README.md | ||
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'),
)
),
),
),
),
);
}