round_spot

Creator: coderz1093

Last updated:

0 purchases

round_spot Image
round_spot Images
Add to Cart

Description:

round spot

Round Spot #

Customizable heat map interface analysis library






Round Spot simplifies the UI accessibility and behaviour analysis for Flutter applications by handling the data gathering and processing.
It produces beautiful heat map visualizations that aim to make the UI improvement and troubleshooting easy and intuitive.


⚠️ Note: This tool still in development and currently only offers local on device heat map generation.
This limits the number of interactions that can be included in a single image and therefore can be considered as a preview.

Usage #
Import the package in your main file:
import 'package:round_spot/round_spot.dart';
copied to clipboard
Setup #
Wrap your MaterialApp widget to initialize the library:
void main() {
runApp(initialize(
child: Application()
));
}
copied to clipboard
Add an observer for monitoring the navigator:
MaterialApp(
navigatorObservers: [ Observer() ]
)
copied to clipboard
Configuration #
Provide the callbacks for saving the processed output:
initialize(
localRenderCallback: (data, info) => sendHeatMapImage(data)
)
copied to clipboard
Configure the tool to better fit your needs:
initialize(
config: Config(
minSessionEventCount: 5,
uiElementSize: 15,
heatMapPixelRatio: 2.0,
)
)
copied to clipboard
UI Instrumentation #
Route naming
Route names are used to differentiate between pages.
Make sure you are consistently specifying them both when
using named routes and
pushing PageRoutes
(inside RouteSetting)
Scrollable widgets
To correctly monitor interactions with any scrollable space a Detector
has to be placed as a direct parent of that widget:
Detector(
areaID: id,
child: ListView(
children: /* children */,
),
)
copied to clipboard
Contributors #
Created by Stanisław Góra
License #
This tool is licenced under MIT License

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator