flutter_user_recorder 0.2.2
flutter_user_recorder: ^0.2.2 copied to clipboard
A powerful Flutter package for automatically recording and replaying user interactions on any screen or widget. Perfect for testing, automation, and user flow analysis.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'app.dart';
import 'recorder_config.dart';
void main() {
// Configure navigation delegate once
configureReplayerNavigationDelegate();
runApp(const MyApp());
}