ren 0.0.1
ren: ^0.0.1 copied to clipboard
A static analysis tool that measures the performance weight of each feature in your Flutter app — detecting costly AST patterns and reporting a gravity score per feature.
import 'package:flutter/material.dart';
import 'features/home/home_page.dart';
void main() => runApp(const RenExampleApp());
class RenExampleApp extends StatelessWidget {
const RenExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Ren Example',
home: const HomePage(),
);
}
}